From 7c783d33563024f016cd00d1b11081f6812f2854 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 16 Apr 2024 22:52:46 +0100 Subject: [PATCH 01/36] Whitelist failures in Tamil translations --- utils/babel_runner.py | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/utils/babel_runner.py b/utils/babel_runner.py index feaf2de80b6..b66425fe936 100644 --- a/utils/babel_runner.py +++ b/utils/babel_runner.py @@ -166,7 +166,7 @@ def run_compile() -> None: log = _get_logger() directory = os.path.join('sphinx', 'locale') - total_errors = 0 + total_errors = {} for locale in os.listdir(directory): po_file = os.path.join(directory, locale, 'LC_MESSAGES', 'sphinx.po') @@ -181,10 +181,12 @@ def run_compile() -> None: continue for message, errors in catalog.check(): + if locale not in total_errors: + total_errors[locale] = 0 for error in errors: - total_errors += 1 + total_errors[locale] += 1 log.error( - 'error: %s:%d: %s\nerror: in message string: %s', + 'error: %s:%d: %s\nerror: in message string: %r', po_file, message.lineno, error, @@ -222,8 +224,15 @@ def run_compile() -> None: # to ensure lines end with ``\n`` rather than ``\r\n``: outfile.write(f'Documentation.addTranslations({obj});'.encode()) - if total_errors > 0: - log.error('%d errors encountered.', total_errors) + if 'ta' in total_errors: + # Tamil is a known failure. + err_count = total_errors.pop('ta') + log.error('%d errors encountered in %r locale.', err_count, 'ta') + + if len(total_errors) > 0: + for locale, err_count in total_errors.items(): + log.error('%d errors encountered in %r locale.', err_count, locale) + log.error('%d errors encountered.', sum(total_errors.values())) print('Compiling failed.', file=sys.stderr) raise SystemExit(2) From 9078cf21dfea5e1bf83562800aed7f063f1f6250 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Apr 2024 22:59:33 +0100 Subject: [PATCH 02/36] Update message catalogues (#11626) Co-authored-by: AA-Turner <9087854+AA-Turner@users.noreply.github.com> --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7494 -> 7421 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 1579 ++++----- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 492 -> 492 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7591 -> 7519 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 1613 ++++----- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 84364 -> 86082 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 1671 ++++----- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2391 -> 2391 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 1575 ++++----- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 7797 -> 7745 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 5686 -> 5631 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 1581 ++++----- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 12266 -> 12137 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 1619 ++++----- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 10680 -> 10544 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 1619 ++++----- sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo | Bin 505 -> 505 bytes sphinx/locale/de_DE/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 80411 -> 77824 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 1649 ++++----- sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo | Bin 506 -> 506 bytes sphinx/locale/en_DE/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 75590 -> 73526 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 1655 ++++----- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1864 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 1583 ++++----- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 80907 -> 78628 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 1655 ++++----- sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo | Bin 546 -> 546 bytes sphinx/locale/es_CO/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 32776 -> 31448 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 1633 ++++----- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6505 -> 6451 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 97001 -> 94375 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 1651 ++++----- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2860 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 1575 ++++----- sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 83168 -> 83602 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 1751 +++++----- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 555 -> 555 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/gl/LC_MESSAGES/sphinx.js | 108 +- sphinx/locale/gl/LC_MESSAGES/sphinx.mo | Bin 4716 -> 82300 bytes sphinx/locale/gl/LC_MESSAGES/sphinx.po | 2955 ++++++++-------- sphinx/locale/he/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4822 -> 4723 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 1589 ++++----- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 96953 -> 93942 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 1649 ++++----- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 16384 -> 15878 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 1631 ++++----- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 10971 -> 10914 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 60268 -> 58320 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 1651 ++++----- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 2614 -> 2614 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10036 -> 9978 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 85691 -> 83408 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 1649 ++++----- sphinx/locale/ka/LC_MESSAGES/sphinx.mo | Bin 74059 -> 72238 bytes sphinx/locale/ka/LC_MESSAGES/sphinx.po | 1639 ++++----- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82285 -> 79948 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 1653 ++++----- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 6832 -> 6779 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6501 -> 6449 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2011 -> 2011 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 1593 ++++----- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js | 54 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6500 -> 7786 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 1694 +++++----- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8520 -> 8447 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 18611 -> 18068 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 1631 ++++----- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 28827 -> 28277 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 1633 ++++----- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 544 -> 544 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81014 -> 83715 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 1759 +++++----- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 7764 -> 7711 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8259 -> 8204 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 15343 -> 15170 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 1619 ++++----- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3560 -> 3488 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 1589 ++++----- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 66206 -> 64286 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 1651 ++++----- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5157 -> 5105 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 1607 ++++----- sphinx/locale/sphinx.pot | 1568 ++++----- sphinx/locale/sq/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 79459 -> 81067 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 1673 ++++----- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9193 -> 9125 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 1613 ++++----- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6491 -> 6436 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/ta/LC_MESSAGES/sphinx.js | 108 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 647 -> 137491 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 3003 +++++++++-------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 56773 -> 55037 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 1649 ++++----- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6349 -> 6287 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 1609 ++++----- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5771 -> 5710 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 1617 ++++----- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 75427 -> 73260 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 1653 ++++----- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 1565 ++++----- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 516 -> 516 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 1565 ++++----- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 74037 -> 74071 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 1701 +++++----- 140 files changed, 56687 insertions(+), 52923 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 8e4caa2211693c92828ff5f851aeb3b2804cc410..fe533f2c1deca0132e6585deccd4e39c9e0b1ce3 100644 GIT binary patch delta 1837 zcmYM!TS!z<6vpxGj5V3gc**Rd)>LX{-WxG3O$)kFkQEv|hzKERVQCn>I1oJ;5=s|} zdZ-{sGkQp~8$}U``Vd4HGt8i}2#PYy2-Et1wILbjclO!mti9IS=S)}bc#eNCBJhOa zZ#Vxj{2y{^^#AYEWMiTje#RgSbQ$A84^F{YoQDa>$E@Ycjhj&OrKtNVP;vI+d~85M z`b`@LlQ?k|`IsAg>Bf7gKs^|UeW*YK7>e(4Dvn|z25^(EOG3p_#o{%sOPxe@89oAd3ieBNZ4gM&d#Y#^tCEt;J|8LETr2TBjZf zWtuRU_01^`^6>&H@LPMqD26lsjmkWnC~9>EdT|RfW%gkS)}wasIjYq!?ffvR6Jw|Z zoMfrQBhjx+qB+n+9I69ZI2~7_7TAXBNV&BJ;}{>rS$Gj=<9$>o22fitj6VEf7&N65#F@TC9_Hdq}BMcp5dN-zo4u?#!E z%+42~5-mo>-;Fb|&TkKzaGryQ5tT?UtEWCPzkL^wXO)c)KuE}demET9JK`< z$j98}i(<_aRQw?!&Ym*HHZz=f;o5vH=+{!h5F@m5nY{# zL!DoOsyH86%WSvv)#znhuX)xtXLW$LQ7!F5J#6n#0l(p944~|#xYc?Dy^On1d-(xZ z<5yGx*|fC~D^PDsD=Lw0B&2zTepU3{UJ%4Pr>8j))#?;fB|c2X6{tPkg$mG&O1K5} zn|=)w@r6AfKvlZVgGwv`|33YwPS-`#e+4*hFFcQ`^d{Nf`~*G z)I)S5G7}3_l6ta>Ne~nixdlcK6`2sx<;gDJUkxPde$LF9`Okm;bI$%O7%B{odcw~b z{_6No3b?$@E_9Yn=Bie5a6 zgbbRyTuh-l%@Xq?(_D^ATE$BfHCLud8%P|h~(1m5F3T?*(tVYdiMy=D1 zgfth>#rmd`i?!H?3jEa$h+x)C+HO?lDX3Bxql1;mP;(5oVLR&d-lIxAX77iQl`7#v zB@l~BJQah=B*WgwK~kWp)m=P!}rT9n_h=KxO<2*_3&U3N(%i?BYRD94~6&Tuj1Ms3X{c zinAY?Vh-T~Y>A@&x^aUJWpoQwkq4-Ro?se|A|DgZ!76|URiR|m{9IImg{X=Z+xweP z^D9u}T2KkMq1L$)?J%BgD1l|xji`WoPzltc5;}saTnjSQT(tN5P;bj) z)KQEfAM=ebHgBd8MDY`FuipO^TsU-`Mjl+#k9v3paT&g`x;Z$ti%<*JV-Gf?63iy5 zenHouDzOvQUxV6l0F}r|d;cmrtZ(}4fEU&;sFFspJw0^uPyy4i9P=S^7LDs?4lC$+c)_oL4AGHU)1 zD&bMoZ~G@q$7r^#{yfyU4XDI+;oqk}f%>b|-FDz(JMblHr=QV{>!~ZJV9JrCjUSb0 z6Dq+=)=tzJ-$b5EGidvtBgHYVQ5*S&O7wRkX=o?jq~5Uze`KoPx6kLKH8@rEzQ(#m z0mol)z~^`a>h?N~zCfU+uDWAObWhZZ%;ou+S$R%YPGN3-ugiTWY;yL}tlr_6`!3JO Xwa~GVu95!G@lb2%xWaX`CN};7<2Sm) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 51c720376df..959561856ca 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Abdullah ahmed , 2020\n" "Language-Team: Arabic (http://app.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" @@ -39,104 +39,104 @@ msgstr "لا يمكن ان يكون المجلد المصدر والمجلد ا msgid "Running Sphinx v%s" msgstr "تشغيل Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "تم" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "قسم %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "حدث غير معروف: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "التصميم %r " +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "بناء [%s]" @@ -587,50 +629,50 @@ msgstr "بناء [%s]" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "التحقق من التوافق" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "تحديث البيئة:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "تجهيز المستندات" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "نسخ الصور..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "قراءة القوالب" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "صفحة الHTML موجودة في %(outdir)s" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "كتابة ملفات إضافية" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "معالجة %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "ملفات الXML موجودة في %(outdir)s" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "صفحة الHTML موجودة في %(outdir)s" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "الفهرس العام" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "الفهرس" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "التالي" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "السابق" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "إنشاء الفهرس" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "كتابة صفحات إضافية " -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "نسخ الملفات القابلة للتحميل للنسخ..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "غير قادر على نسخ الملف الثابت %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "نسخ ملفات إضافية" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "غير قادر على نسخ المف الإضافي %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "ملف الشعار %r غير موجود" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "ملف الايقونة %r غير موجود" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "الرجاء ادخال بعض النصوص" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "أدخل إما 'نعم' أو'لا'" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "أدخل امتداد الملف, مثلا '.rst' أو '.txt'" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "اسم المشروع" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "اسم المؤلف(ون)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "نسخة المشروع" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "إصدار المشروع" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "لغة المشروع" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "امتداد ملف المصدر" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "إنشاء Makefile ؟ (نعم / لا)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "إنشاء ملف أوامر للويندوز؟ (نعم/لا)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "اسم المشروع" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "أسماء المؤلفين" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "إنشاء Makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "إنشاء Batchfile ؟" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "عرف متغير للقالب" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "مؤلف القسم:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "كاتب الكود:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "المؤلف" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,433 +1930,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "متغير" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "نوع" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/changeset.py:23 +#: sphinx/domains/javascript.py:331 #, python-format -msgid "New in version %s" +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "كائن" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:63 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 +#, python-format +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 #, python-format -msgid "%s (C++ %s)" +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "كائن" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "متغير بيئة العمل" + +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "متغير" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "نوع" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "متغيرات" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "متغير بيئة العمل" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "متغيرات" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحة البحث" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s ليس مجلد." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[المصدر]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[المستندات]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "مثال" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "أمثلة" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "ملاحظات" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "مراجع" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "تنبيه" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "احتياط" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "خطر" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "خطأ" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "تلميح" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "مهم" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "ملاحظة" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "شاهد أيضا" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "نصيحة" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "تحذير" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "قائمة المحتويات" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "بحث" @@ -3343,34 +3402,22 @@ msgstr "الموضوع التالي" msgid "next chapter" msgstr "الفصل التالي" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "بحث" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "نتائج البحث" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "البحث السريع" @@ -3407,20 +3454,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "نتائج البحث" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3441,30 +3498,30 @@ msgstr "" msgid "Contents" msgstr "المحتوى" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "فشل" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 0740c166987cbc4a338342c605ba7fcfc6630a41..41ac7dbf7d85e70f393b2e800c59f8dfd14b6ed6 100644 GIT binary patch delta 30 lcmaFE{Dyf#Gp~uRfr+l6iGq=_m67?z3E_;aCVB>33;>Qk2e<$L delta 30 lcmaFE{Dyf#Gq16(frYN2xq_jIm8r$X3E_;aMtX)^3;>SN2f+XU diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 1a201ea60aa..b130ec5fc95 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://app.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 53ddf4d7ca5d3d75b2ed78a4cea151f8deeb7cd0..8d956d3d2e52e8d1b9b43e9a3a8a49d591873cc8 100644 GIT binary patch delta 1685 zcmYM!OGs2v9LMqFdwl1sQfD$lGYdnfsqs}4sc00G=_a%c%7se0h#;_ zli$h+jsAa{qm7ATcnD+hD5l_XOhZ4e#A~<$@7d?07|(dZKA*AA7jYH$!(xnC&2*E= zMFKb6s0DqPfeomDZRo%gxC2ky@hB!T9!Gx66n`{t7PD{>H9wxo#55Tghfd7K0*oTQ zsp3K}?nYJ8fLgd6mCz{+#~wSrf{}~|QSwx9yFqY~;u)-Y%6^Ygfi@l{O1Y0Se&|wf3Oa>&JCCfGTjz`WltkBx?Pcc>1rv zL2hWlFQ`hFP#uWkp*oO`TBsN^(TfUPk1xZFX+fQld?qQu4Oob7+=R_oju%mfbIcm_ zbD;`<<9bZugy;}%MK|unBJ`sIKSXut6_(-x=A(1?ok$ZU|M$7^?EmsDLTFLzNP zXGo1^9?8Z0Kot_pOBuvBgTi-)Sb64la9^kF}$ zle4IGzoO=C3$#T$A_C`P8zT}uMa7FT;b12Z50J?`U1YH<~r*H{g#5f$pNPJ}Pk76kONqc|R-Zw$UEM+_jml@+W z88pHe*os5LF>BDuL(LDb)OLxCVoHI07?K8!l3x z_@>eh)S)tLMwPhD_PbC4dr*n>BWs%L_Wm$#rSHMTIFHE~z+wuNiK>7TRjCrxtEoV@ z25RgBdoYIne)~WNYQfW}lJ%qB@jX-mPf!azLt>hjsN*wiL*Z z>aPV>aZw2~Q5k2W4&!FjLVHk&?L!WYIf`1K7nR6mRAp{h@1xdxjEU$)Rba+Chf3^g zDD_u>UkoU)E?O`gwbM9M1=3IzC_pV#gYj683hcrWA7i>uXQh%!O0XI;uol;1Cl=uy z)FGX5+lEetc9?*vn2kD&b(o8-n1we{fyYo4n#Dp4B-<1$MJ3dN=h20#z;9fI4i1(! zQi^%#Zm^9$)ae~TmH0L4)PBQqjEnwvzros$+ZgZ0bbNvOdCsGDp3l+WiKR$UOdlrW zHB=lglCaxM&`^Ls=)^M0uoq9F`V**~MKVi=rvO)DEiRk|)cs!6PCclA5TK)dN)7Zj5691O;j+#*u`jG0HL0niE6>uC?!q2E3g)*oLWTOJsqZ2Qn zUgcBNEBlCA$Da;+HE9^D-+wU;?P!+(qO6q#tZ`7*A8+AK!>$4%!_pM_dQnS{*4aPh&`(U-*Ws v?82-Zrz0n?D8JC-4QurA%Uz%2Nm^VLG_Wx$A!zvR?OSh$x;zJBe+2ynobRVZ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index ea013f4cd9e..bbb50c817f9 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://app.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "বিল্টইন সমূহ" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "মডিউল লেভেল" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(-" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "ইনডেক্স" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "রিলিজ" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "অনুচ্ছেদ লেখক:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "লেখক:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,82 +1929,10 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "প্যারামিটার" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "রিটার্নস" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "রিটার্ন টাইপ" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "ফাংশন" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "%s ভার্সনে নতুন" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1967,346 +1944,423 @@ msgstr "%s ভার্সনে পরিবর্তিত" msgid "Deprecated since version %s" msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "ক্লাস" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (ক্লাসে)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "রিটার্নস" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "রিটার্ন টাইপ" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "ফাংশন" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "ক্লাস" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "এ্যট্রিবিউট" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "মডিউল" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "রেইজেস" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "প্যারামিটার" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "এক্সেপশন" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "রেইজেস" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "অসমাপ্ত কাজ" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "দৃষ্টি আকর্ষণ" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "সতর্কীকরণ" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "বিপজ্জনক" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "ভুল (এরর)" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "আভাস" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "গুরুত্বপূর্ণ" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "নোট" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "আরও দেখুন" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "পরামর্শ" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "সতর্কতা" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "অনুসন্ধান" @@ -3342,34 +3401,22 @@ msgstr "পরবর্তী টপিক" msgid "next chapter" msgstr "পরবর্তী অধ্যায়" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n সক্রিয় করুন।" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "খুঁজুন" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "অনুসন্ধানের ফলাফল" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "দ্রুত অনুসন্ধান" @@ -3406,20 +3453,30 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "অনুসন্ধানের ফলাফল" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "পাদটীকা" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[ছবি]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 71f2999eb5c2adb13e112d3f0da0336b82676245..7f15bee939fe14a2958550f03d5f2f6cfffa4dee 100644 GIT binary patch delta 15073 zcma*t2Y6If{{QhiDYS&pOQ@HS5K0nA2raZwLhp)*(k96e1|~CMWE0)y=Y2xGbwR-Wp?Bo3btI6nArTEvta*DLpJJ zNIa*fW%=*}tcxRhSynt=hMjR5-h$U-e{9;@vS>!EOKFVY!c903-^LVd(#NuDV{fd5 zgE0+9qXs%3+u|)a8Xv`Wcoy~IR(Y1y2ve{D_Qd))0@d$SOyK=i5eVtP< z5i;)v#`~@M{Vc0FcEm&+ zgc{H|OvOS}3a`hO_=I!)5bh*Cjoon@dDXx^#hQ2uHK3nS85udivRFN9yyG<(Y0ZTy z8g1|`9FE^(GwjWJG{gzW@>@ly0o;LFvd6I!&tM_0&bKTkW&MP0u^ZEGf)h{^nvIl) zwFGV4K8XA)h5zJ&{1BD$FHmd#Gcp$IqI19hV6sF!+_4Nb@U_SotY=Wq{fa6=*AP<^ z^^mf%vQafO7nPyghD6K=@8SXlZ9R%MeunBGZm3zShS-9*J!)nHP%oN+8h8ng!}+Ke zyyW-=D#M8d(Q3CkqiUlNQ*d#F#v~f|po;4|tbwj!mQ@F9p;F$+u`B9DqfyV@jkE9+ z*28hEUk99l@wglrgLNa0z&BC5C7D1q7xB=jN#km)g)5LPZQY7mvsX|{@*Zk{Cs3(8 zi`13XeWZEed{lAWg?izBWEHG>qfG5g!Ytxts24whncDvcXmsJi8SIW}3@;t0qEd7X z>iQ-p{ui?2taI2NdyX*^xB}Y|7ozT8hgzx^(Z-LlHdIK6J%{j0fyAwZ-UGa15h>eTP{_l?}W*=(6cVim9itX_moXGpF`o*S53ULB) zC6?g{Y>QJpX8$h66ykN5iZ7szpCSKPakI@p=OSm3^$M~Rt;QuLvtCRiehSs^2N=1Y z#yJ|)m$ht;8QI5}P8>@~YouLJ)jS?`eJ!@b-Pj*L!(P~KuCtVQH*pa%2kRoTw);oUkuj>Ai3mVY{+=p=i)6pSZMck3~=z&$J4!%MSr0INTCYV6n z2lc`NCm!p>Q&BbM#&I|oZ^WGu8ku?^Xbz4Ls-p)`+vf>vjeD^n9!HJ*SL}neL*|Fc z5Y&ukU?R@JSy+x5@H?1;v0<``Jy8>i+)aZs!Fm&OF|$1S4QUmks`+soj_+Y(Y{vpB zYDhJA>4qB3|IwFG_tZuDak@3-!wq0~Q) zO5t&Ah3B0(`6~0Z+6~n~7?W`e>T|oXH6F$0cpj6m$<-zUsi+AJ!G<^mo8erHC?(g@ z=!BK1HQ$Z>@g%C)Ix~Wo0x_2>-IB~h@rvXkS zZijvGZs8nmH(_mj8GGX) z9E&wqap>S=REiIvitZ!S5`K?0u+5FpiASt78d}qQ9E6u+9lRSgv(2c?yo>|!G>*jX zH<{00g(|uiQEU7@sx}gCHrp-*#}UuPTDTK6plYnA{r@%%z2LZWqwy_f3DU7H*Qa3y z&c*In>0CeHTz?O>TWZ{D_We*)4c(0C_z-Gf|HO_Mdz-1L4D8DLtr;}*f?Kd1?n2G{ zBh(t6N6oPLYV)G**oAmLcEj~}86I*>yWK3s-*FPx_hTxyt}qAPU{sBaz{ofn(`cxp zhp`iWh}uRq?l87;%t39>5vT#oM$Png?23<}YUE?o1kRwAqWK!L?Yg2Scp2*XMQg~v zUbu-1nRv+YJmwO2zSBH76AOq}U?LvG&iEcikLF7Ad!QdG#WPWvy8$)eO{jrZJJ&zP z6ykH0&i$^}@RM z7_(6|HW^#uwW#8Z+)G2Le-)eIPpFY4t~WE8h#F7`)#25s6yNW}2QZ2FJLmdEY)+hh zubDtT_9iYs8?Q!9Xakb5i1i4K7F>7(_25ZV%40W}Ds7Inh%>N0_CU>a7;1a^Py<+k zn&C>+3!X*|bPpceIr<1wCi9%>--QM+e7rr`n9fPX+OS=~pBT~QO8=)@)1lz3%? zMlBi}Q7_(#{qS|?dYx@1b&XKP)Bz{p0MyKGMQyJ~u@8QUeX-r6<|vY{ zqW7bATV$WpIEEVeIn+p-J!Xm~6ZOGSsA4Qab#xVKK({$Qi0`{B>m@vb>$WqnSbnlq z(J%4Vr}-Nad}W8Jfv!9Gdt~kZy)^33(X?mH+LWNy&W9AfwE-{3!Mn`2**Y9e{4HLA zdC!@ncMYnaXRsdbLG^PO+hL98&9`7jEFm6?-L?OpqMMh#IL5wW-t*)urgX%3J2gp)c#M{YnGxrDwX|F6Bvdy@p2r3vrtR62{Z6f?2R8dapTv_ zFQ!4SMa+or;(}7R4ZGlO)QC@^Qq^mp$H}DSZ(#~Hd&9ga4{H$*#t}Fg_2N6Q z1#U;Z;2`GXXE+{H-!#7!!^o0EtW7lZqK{A=b$!d6V2d!1_(`jmtC`G-yFm*8092XQF=8A!QYHHEN7QpO-!aeKiwVTf;Ut%3y@vXewbk-pX2wHNMY0t2;3}+v z`>-j#iAwR8I0@t4Gu1x@>(Zgui5I?amUJbmSa;zDJd8yc`oPr2yBJC3!Y?#hV5<-L z*Ra?Nm4TP>7W^JHfXGMYk5YGHbK>LJ7B6CJY;)Aa{ZQ3E4b|@=OvVc5`ZlaXyzeOa z*G!IZp%12iZ2rxL8&xb{V*~8_iTTnQi}i?SVSOyaG`t4;;uciLpJ84676;*Z9D@Ts zH8pV~>i*78Bj%*r%Y{NN97L^U*JGx-d!Pn3K)RR-HYR@JGc%yQsE*!872yddPX63% z+jP{L55wL#2{q6gaV74J&=^i*;&J0z%qRX7Rg5WLn4@$erVwA}xCPe}??94r}5C$M~;I2X!%# z>#3;w*{A{aK`qr3)KZl=_ZOiivJ~5E|NnzVJQwz&M)W%BfzPoC{){s);iMVRTvW#^ z(1Ukk9XyYkNX@U!fLfs@&#!Z}#@YB8_QO#>u@v>GR~@Pb2n%IeLQ_PyBbRf!E?7T#0(o0c?w>P(@ewBL8X)o8uJx z0oUNj-^@%u#$4jomMi*KFq1HWcp)a?vIq@zbUSK>>rut^5NZHbcnLm>k71I_6;0g> zsDYhBJ=Z_R72PePkZonn!lrngbA26Z#@kU7xro}X5j)luJz_hej|+L&3%6iCevAvy zjx#T=#1i5o*cbc7n|Kkb20p=A*ogJeK@&y|^k!^BGt7THx4VChNsOKuN4<5h_jIZsAR(%d??cJD(H{lidEM6Vm|8-o^ z9|m_|H*UO#s@6IQCRIIAYj`;p;LWI|IgAbPeQbr_pq8$7qAU8-tsxF4o{mcWW}JpU zI`MeEvqw{Z);%;dq7yg@ha|b8+v^t8gC}qZ_NZqvuozXvx1)`3p)&L%w!y^uuIP5| zg39ELsEq8zuJ{vbqNxpBRwSLqWEz^mRj5?njkH90q_J7+-lzf0!`isPxxN)u%^%_< zJdNXUSQGQYHK-ZBgv!7vRK^ndm;74u38?3<#u2y%_4%VsBW8vP&CJ?$!5Q4h#XPJ) z)xsfcglADRPik&nGz68QLe$KzMJ>%%R0dDre5{}Bvi9me_Qp{yTvjYDi_mCB<9b|< z8&D}rS%4z$_#W2YE7?q;%A)rG-^PptzFUYjv`cl`%#&W z{6s?o=-9@bQ298M*n?B?6|9ME+nTjcM=i}*RP|56Cg?@YEP~pG&tMAvh#j$sZJrx| z{fS2){YR`7G*)xr6Vw_7+Zk8lK;n(47k+~3@Fdz;H^mkGBU%>fyI>Kf;R@`BkDzMh zE7XMgwRc7T=HwpK=T6~3?f*upCIgq?1a8bjH$I1&d7Ct|?K)t6;(@3dn1I?f%Te3x zer$+GQ7Qic2V=JmCPN|A%vYke`CcsI{Z_+tvnC5rsoIFcai4R&K}S=yeep7`Ux(`8 z15{0P=wx=mSWG8ggv!)L9Ep2SyPSv%xCXW6@1S;5lkTQQGI1htAu5wkqH1av zYGQjLG}_TPi8`4QbIk`Qqn2PA>VfNU8s3D1@hiL>GkTb!TaLAe??P?M`%v4k3fX4X zDV%}Bd%B|ksmBAT^CA+{%M749>ZF^D+8)>7rMLw()AOh$Y1P{-!DMVhd^4(c9zlIw zpF^DoS^RNHNAFP7mrf8h6kP^tpd(P3n1jm1eAL92p$7IC>L`B&2W$VoM?)`Y)z8#ICVGjBQTzE2D&?P| z4x-flW`J3!B`ZT4ccOmGzK^Pblh_<%2DqYsB5H{##C=frr(tv6Z-r@Sgg2vRyc6~1 zaMZbe4AoK6Ky!wtV@Kj!P{p_dOYwQsZt9Y6ig-9G6Z266TY}lR3RRTPVMJ?^G{_bG zE0P|lDqV(p!75bBs!+wU54AhaqIOH_U~^KAKy9ywQ2Y94R7SIhm>;);Q3Du@`qG(> z+NP_Au>ZB6_i{ni{u}COO&@B0EKb8mh!^6cm|9?7a2R!z)*EK__gI`oT#QQbE2ttq zfm*tx;jZY<{E4W8>m^i;T^JrQN94c}=4*5%+T3^uij7@1B(-vN)K);MXL*){`F+iN0f ztwN}^--?~_u;WG4i#m-r&ksdqq8v5A`%wcwfI0`hM%7%)2`={T@T&1$->I9>F;Euv z2K;VcC%d9$AluGd81#lcnQouY_J-_GnWxA*+v_Q|GHkEkwlW7*%=!3qNt#P7B)MfbF(Jp0FLDU0&w%RP`S5TkR`6i@g34+s8|S zZr{v8U!Z87KJ5zgFNmI)7w0cKaWpl*^@ls;9_;c%Yz=D zdl8>54HSE-awlz$srdTRzqx`{C6kBLXjB?l@Lxj=Rc*QQv$(vJ@ElL6C#!66NvX#l z4$TaO7yCRZ8f;komX?RYcAksEe$5*j@)~N{d(erl7l_q(i=_%%u zN|`?p{{2Dg(m9@JCY(=4pZY(2b`I$%@&=2_eeNLBoa13p-2Ng@w8w~&8|_jb3kL#r zsoTHU*8Na85DfkGwa(Kadv-8T%4jm|g>$?`bN(2rFW}ZnMtjV%$NVV@+3ui+oc~vk z>CyZYduDt69zA9|>2%)opFCFi+}rC`O%KGxxI9%e=U2y6TpR9MBYjS|)R$iIRJdol zyNHL&{bk;wdCIe06!6dXmXrtGsz`f*+gGl)2dj>Sf2q}SHg!-OC<+HXER4U{_V^cg zg8{!5u)zq=t=A z)o#O#8V&x)xKni%gC1y7bzt+^*wo)sH{0v;WY__}Z?XFOy{=6ORJ^;jQ&V@)uRPobC4dG6Vk1h2}$53m%#jQ#UuWTW)4{uAS38FQ-?<+mFnT&&=tT zlUp%t+lAQNtZr4q9z9%NXGziTXG!_F%NtieocYIbQoV~a#BEp1dNH}8=Zk}DaC2z& zuBs(3&W~*}Xtt-st8L?Ro8x3p701a})jMn3(c{D$B)_aU#iB9KE%$S(L=P2r)$Iqz zCPv1jyZw7M`n(~p?c4L*rm6oo1+N`{%pjCysIdQT|0<=3ne#oMu!0^_(&z=XQwlDEI4- z;+V*?hXni~kI$FqOs`_z$s-ZxW;7XLPpMmJtbX`E#}-}r1NNS+p+EYu7)Z3k|9&Pq zlXOwDlU&!3 zQX+I}u_W`$-M&8tY+gFQ++%B{O3J-sP&bu7|6RN_lp<&qu{3Txjp=RsFEGYpA@m z)E!(*Qc662zRx%a_*(P3bto}lHk>!Sh_6R-o)rv*t9MmQzu3N!b{%;ta+m$*dezE{ zuGrh(uq)fgxC&}jKddvddRL_{#x<^;hj%ckC8U^dLT!;!PwAc~g37JCoOD`ZRonEaplJyT>}Z8?cgeo z(Zx=#8{?bk>)Pg*0BPeWb}#T!3dK8K%W{>(RIbi-HLt7P8!al8Y-P)AS4N`Q3+8a$ zu`1h@98=$%H_;L)a+mJeRvDk`T3Go(uIu=p7Oe8s9W!Btcua|i#$Z+L%JzdRqyxh~Z-&MK4x2xR@wttzMUozD@d<@xL zT4;~c$-q}}C=kj}$@=Y3v^xJd>P_)bHRX$_M$Qs5*c+wM%^Y%9PK=uvG_=X?tkr@I&I*%qoiTi}XN;1v8{zX_^$Wl&@MQ&R5nF5=)Tj_zJFM_v^4 O6nb{tJIwWM%>Muczuh+g delta 13544 zcmZA733yaRy8rQWLc$h8*b}y-Nk~Y@#tvai2!u`6urq9(qyurXk#vB7(x}KH3RhZ* zf(rs8j1ex{Xha1R6h=k|WW^!w@x>V zN4JMP=nwP#y;bO=7XRD`v8+ybAWG5y{xdGavewv^H6AzdnX^4C>l&8}ds|j6{ds*X ztCIM!zLr&j;r%Qt0+(SJuEFm3Aa2BZ9D*bJTNeNNtkwMQXgXfUEDRf9S#g+)O>hx5 z#!5`U6{v|mgRyuR@4&xf7wn#C9y|_P6X#(|EW#GJ3^ne04CnclpN2m8G`7P4>Vqe- zIbJ{)eu)|=e4uW$tj?%`lF@~|aSBdFjk5=b;Sndc2bun8)c6?~#q+If8qqito8e;A zgjQl#+>Ak0Ukr`CG)CdO z7=>+yT2?DeMYh|@LOr+wwN(#dExwQWSjxUJ7wa^}VzX?^YKy7Jc3U~egD4<1;g>qeBC{i`tv>*a5#nt*GH}^Poi3#4>OKW}+Uj&T$_qwP%rfw!TBv zLiZ7-sE1)5aUrUf>U}gC(s&1(;%QW>FF5{)dQj_Jb7MX(AbtrWvE4|^O2kAA!|}*1 z))drMJ%&0RS5Y;V#y+byMxrw3n?Qr3Yt29v-9xA?c?LDZ{iswPMasjvg({{@M%ROW zk0i<3kE)d$n2ue?mW(YGeMghQ4h>wU$oNss0VIz;>S>1aROCr?>T;q%GgcRxI-uMPT~1h9*t%=WKu9C z)>zaBDsero!QWwv$)>nU93Q}z^zXr0_$n$hZKyESMnCL@BT=8LK^^Z6sEO@FUmF?+ zX|%$>I9^5F@IC5!!zrdXJEAg`h|0j7ScVTE^=REhEhKBInZP&Af2Y!f(zi>YAJ@zE-Jk1o-L~KF42(=|OI2%`@QvMODMlNG2eva+fvNqGr zLQ-a!`?FECFnI>~*G%Tq(HPfZTYMNbk=>YxFQTgaBP_;FGfisO;27eA*asW156a8{ z$C(&Kyv*^xu!eXKw#GOg({E0rAI`;G)C6{-R(cSXx|66q{SdWPpF8o-sMFDu0_lqB zsDY=T?pufr(TiH(3e>o(Q491vN<%5zj@qj|sMH*A`j4VkbQ1O8FHr;D#x@u_$K2N* zwU7iHjeW2q-id4wa!pI7{dMuQbS_m9oH``!(2`_yx?sPcaGG zy3KhXij#;-u>uccEN0}J<2MoY0$YsQl1I>m2hoG)QP0aR;MLCat!*?Ybn8o0in0pL zm&yjzz%Srh{40`mYZjwu&tJlB_>mLaMWz@NQ2piD1#58#9>o6mBWg=B7Lxz1G%{&0 zwsjUMa4T~WUyb-MHpIr1d;^TcP;8AZjK;H=iON{>JIxm6p!R+i#$h$;!H?l!JdGRx zE8_R$zX^?nY;Yr7jA2-VI=?n3cJM2Zg9(DigsABsQcE(Gn zBE5xLKywNu6JxOh&O$BR>!YD_x)K-Q2Gq*GMm?bYV)GMg9BO6%jT{*3Q|yB|m3-&p zQdE(?jic}z)P(v~nbhBb%HVyduk*)Ir_J{_8k)%$n1DBM0k-#=l`O{?;>R!&>m5&^ zR{kL-;>Xw(n^to#W}q@L2DRdasA9eshv5$76!@%9Xr$4RMaAhsrPv7{#5VXxR23ga z&HM_gM%phmnTy5N#Hpw~&Bp#X8vEfY9E9~a25&g=kY)P)!2Z|J7|n$Ps6D!kN@4#R zvjslK7qL10pJE^U9@}B^ax>voeb^TS;fL~w=#@uJ(v8W09oOln;B))_(*l)F& z;55{huE37C3H7-;AC0jzLhm;-ornpYq~oap#0jwim2d3eVr-k3b!dWuFE9zzw$J2(L^ zp$1C*FLU1KqK?m6$0r>F*je|XR`@w)VCci9Hu|6@J^{4_rI?7T(bt7W9SzO=Jxs=% zn1=D2jgwKS_n~e)fVp@9n_(BfIp68npLiC=;lrrR9zbR65^AD1Q4@`Ng#7D5pGV9M zlTewcLKR;P_Q8i8k7FC+Td0Y&c+{NZ{;1-ua$Js@z&)r1?n2eTap!vE7V`_L-4^oS zhzkSh7=bz17uP!RA#6$p33{W#B_p%5R`j*5z@Nfw8EG<)c=z8#SSKPy?Ptef}pW?y}WNi_bAO4-P5rmBlkH?GEs_#`Uz*RVB)JYkM)J8VH5i&}9HjKJyG91Bq^ ztwLpPJ8EKkk<9t551b2~o-{?2jE(ugR8)%RVt?F(9q|Mz10Q26{07^i{gjzl6e>=^ zNF0Xx++Q$@wBstsNx!p1vnAgV*s@!?>X16V>s~- z*bPIro4=swjxJ&kX5$)E&7HtbJ{qTJXog>-X80R+$HZq$JQ-&YFThn>up z^nnAW1}?tDDjC50vN>i=>dlt4LG4+4q<*Y%I1{g99*%y+{NZ&Q&L;jG<1pu-8OMV< zjuohJR$&*N{{W4ybi9uX@n`If`LCM2+=8lsCr|_I$Cmg8Ho?DPI9^13?w_bk{epTi zwR+9Gh~hDpxEJdFJPiK*e<2O+aRsVKYH$rcjk+Q6b+fXO7)`txJ7OJbpcB{uKSI^a z_oz2u_#rc)_Sla&4ZC9@vT|#aVx9jNXncnkQRnp3VKcCG#GLC^s8i7%b1=ryjT(3t z>bPFO`55trIp?LQ7ug0>%D1B?eg?trGF{vTpvYk(N&y*t^Q<=EIfmAG3_0dK3n6X(T+y= zNi%^s3?rV3!*MoF#-}hBzr{H0_h<8?@s)i+gzA5-usHp6dF#dixky+16$(A_c?M5I1?2Y zePFh78LCL1!>92m7GVB|rY4SK@b~{`G_+UY=lJ6hCZaMBz;<{UC*ThljkzD00p_7H zveJp4KvnzesPWEWd%WTFN1QjW;$+kU`k*h9##$Qd@lBkFcU&+l*@mr%_hKZzfi3Vf zCg4>ZgpDqmfrq0eH~}MYAr8Z89EbIohM||t^ zRgBxP7oJ2NyW5VgfAC|3csO>(tEh?mhWQxrv6(;x>V>ummARd$3>`pi?R!2NTG1z% ziZ@ZIP5i{{DY~lnE17s(0Iq?s9M;K-SGp|=k05jbr-I}`FI<(_jA87f9`(+ zQ;DOln=KuI+llYQSs4B;Z%LkSd1xqAk77^!6XxO1PCWi!W(7VRLVq0&#xGD?lK36( z3hajq@JrMd-Eo7-;S1Oddwp+yM`WRDY6J%V{GUgoA*uIbHWya>+kF4Oj$MeaqE_DE z2lHl3$8p4^Scb1+6HNZm6jg6*NSukoFdH?_y%>wTuqnRvBl$l^;}jh;aL-R<0j-;6 zrCYEM;aTj8O@21#IUSo54@3<#2DQSesP~2&HGw;E3NFU~#A#u>`*9)h zX&;S2GzR=;I=tA6_#!UANXrhsFe*?JU5_2`&zOUsp-w@vZ3mBUF7_s#j?3@?)c6fT z>|haRVSC~-)QiZsj)qeC4C==Hn2DcYD#kQ0H{OA&f#sNne?X=34C*wbhuXpK_r2JI z_&e0Gix0CcWoja7D;HxfK8tLT&-$8%Qg;J8VHlODJ&eP#n1Z8l399H0;~WfcWa345 z2k}d&3E7R!eRFUY@ov<8b`v}Ji)sRD<(qM+&VL;Z7ad=sQWM_P4t{wg;C$i{s1)u( zW#kHGU_`iC=@9HjT!vb}7E~q!PXFf^OB~tE4%So#CJ;}-K0M#5p^=UIP&2)bO7&oV zRkX&1I09E-7`}meQ60x@yoPa@-rNq>&ScaCR-=yPD^CAWR5AY>HGZ>5+wy5e{b|Ht zAr8m;PE2*umqr1NCk{kIGPJTVo3L zB+f%ka5bt(kF@ofj&Gfg6#i?0p1d@Y=kqS z%^uH3ZNdGhBHx61zdVClSiO&ij@!4WJ?!4z4*p4IJnF_JI0RRr9&i{R#^?@aYo2p_ z6SL?)hq^DCKiq4)ICNnyj=>_-yMI5b2z`fX45sl3=3$pkW<_3{M0^(Y!GzA{0e7G> zumN>_C%W-_)XJyFnBz4MTM#cr?fp8`={STsP3N(d&VRdDlk#ND;ld(Rit11+e-rf{ z_zeqitjlc4K1?D$hojK$V*1CRinR)-~tO|9%=u)j3p(ZlO*= zZoGN1tVg|A-p9GvqpKbKIld8R5MRP>*f$~gMziK(8{$ID#~M_IFQQIc`$Y4~9w~Xg zmG5+{L>KW^jK$Ybsk-1?kLqTw_eQOJDyoR?MpgUEn2VRNKgK7SjQ$R@iJx-3jD3k+ z$((=f;dB~0=etp0WQaS%Bj;^V8@DHK0upx0Bs+e9xt?X6of>%*{+aS$+ZX7E0Q&68@fphRa z%)u)-6XVl^#b(`wjfpp*j^ktLKJ&rn=+N=HhI*5Y%CLj~sl~I{gE*vznLuyUx7sw+ zskjHH;%?MRe?h%qI`uT~iy5dl-Ugh2&!N8FZ=#Ak)z{0sYI9IuDix>|Z$}-U6R7vY zIaCH(^)@T*gTsgiqh3TSQN^|s)3IS6)87|$-)z*v?!u0E0X1RYk2I8$sJpCx)ttbEs5D_A@EYLw(MJdJ*kHO>`e>>%K)7X7;!Bbqecsy`ofYBr+AJBdm7F{&t=W!hFLw!)4& z|Ep-Inx8;r;y5xh>lErs<1$XhmIKY!6ySK`2T;X&4)uV`sEjopWNIb`HSR>zsi{FX zK8e8>8V=(5*4V)&rE9P$aV=^BJ5b-_FQU%tXQ*@CX^5%%si@O)7k0oG@OgX}_hHRY zlZm7(^Cm4s9rGQy01u*1DejPMUL-?MZ>S}xJ>7|A_!;UAHf@;M%gs23_$;d0V{*)% z&O#N{a#X6fqONa8P4EJ0K|i3js{3%xzaBV!xH%U0p;GlSYJl^o6<$G2pzR2g>O9l{ zD^L&E?ezZxI}wNHnhYhOCNv4PwH2tXszKeiBiCmxT%w~59iQPeyoH*`-|Zw78_iRps%zCb+!i zu7Zl{w1V>LGHJ{$We|1$Hm}rg0$go+%-Ly8Di`2yA`in9Z!_ZCM^_ zrv^US`WM@O>WP?)g7UJWtYoXK+~r;5DfPI@+@+pES3;$$h#?D8Ss61b_R^PMLwDfD z6EE0_Mdg+HxU0Zju!t+3vL(fpBR_H1$FYs1+JpTQwqMDBwlb4b1bW|n# z>zrTMtMo^c1-LZ1FE zq(OO!$A9;I-P=`JmDOdgNrm|?67E@6;HmJE`oNqW^BP9SIWvw^hP=gP3oWxS|He$0 z|II(P30&FpbAwi{qGHnPX1*mQsfXMTB+aY$mouOK&sxB>cSJt=| zddfVNZkMN|iiLTXQHrkg$|^6r=k-)-OUt~qGeYh7CY~}EJMKO9$NGmtZM#8Jf+}xi zwWoMlZF-g+GugGc+FjgM=KsaXZ#=|)=0E2*F|?M|tu z^w^7)#cry)+Ex7j;qFRLesTTO@%A?%{{uA)&a?mk diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 1e4764aa889..0b66ddd7b5b 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -1,24 +1,24 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # Adam Turner, 2023 -# Antoni Bella Pérez , 2023 +# Antoni Bella Pérez , 2023-2024 # FIRST AUTHOR , 2009 # Pau Fernández , 2009 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Antoni Bella Pérez , 2023\n" +"Last-Translator: Antoni Bella Pérez , 2023-2024\n" "Language-Team: Catalan (http://app.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,104 +41,104 @@ msgstr "El directori d'origen i el de destinació no poden ser idèntics" msgid "Running Sphinx v%s" msgstr "S'està executant Sphinx versió %s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Aquest projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb aquesta versió." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "es crea el directori de sortida" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "mentre es configura l'extensió %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "«setup» tal com es defineix actualment a conf.py no és una crida de Python. Modifiqueu la seva definició per a convertir-la en una funció que es pugui cridar. Això és necessari perquè conf.py es comporti com a una extensió de Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "s'estan carregant les traduccions [%s]..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "fet" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "no està disponible per a missatges integrats" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "s'està carregant l'entorn preparat" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "ha fallat: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "No s'ha seleccionat cap constructor, s'usa el predeterminat: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "ha tingut èxit" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "ha acabat amb problemes" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "construcció %s, %s avís (amb els avisos tractats com a errors)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "construcció %s, %s avisos (amb els avisos tractats com a errors)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "construcció %s, %s avís." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "construcció %s, %s avisos." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "construcció %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe del node %r ja està registrada, els seus visitants seran anul·lats" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ja està registrada, s'anul·larà" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ja està registrat, s'anul·larà" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "l'extensió %s no declara si és segur per a la lectura en paral·lel, suposant que no ho sigui, demaneu a l'autor de l'extensió que ho comprovi i faci que sigui explícit" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extensió %s no és segura per a la lectura en paral·lel" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "l'extensió %s no declara si és segur per a l'escriptura en paral·lel, suposant que no ho sigui, demaneu a l'autor de l'extensió que ho comprovi i faci que sigui explícit" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extensió %s no és segura per a l'escriptura en paral·lel" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "s'està executant %s en sèrie" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "el directori de configuració no conté un fitxer conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "S'ha trobat un valor de configuració no vàlid: «language = None». Actualitzeu la vostra configuració a un codi d'idioma vàlid. Es torna «en» (anglès)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no s'ha pogut substituir l'ajust de la configuració del diccionari %r, s'ignora (useu %r per a establir elements individuals)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre no vàlid %r del valor de configuració %r, s'ignora" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no s'ha pogut substituir l'ajust de la configuració %r amb tipus no compatibles, s'ignora" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuració desconegut %r en substituir, s'ignora" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Aquest valor de configuració no existeix: %s" +msgid "No such config value: %r" +msgstr "Aquest valor de configuració no existeix: %r" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "El valor de configuració %r ja està present" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "no es pot emmagatzemar a la memòria cau un valor de configuració no seleccionable: %r" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hi ha un error de sintaxi en el fitxer de configuració: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El fitxer de configuració (o un dels mòduls que s'importen) ha cridat «sys.exit()»" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,291 +235,328 @@ msgid "" "%s" msgstr "Hi ha un error programable en el fitxer de configuració:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "Ha fallat en convertir %r en un conjunt o tupla" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuració «source_suffix» espera una cadena, una llista de cadenes o un diccionari. Però s'ha donat «%r»." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Secció %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Taula %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Llistat %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuració «{name}» ha de ser un de {candidates}, però s'ha donat «{current}»." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», s'espera {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», el valor predeterminat és «{default.__name__}»." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "no s'ha trobat primary_domain %r, s'ignora." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Des de la versió 2.0, Sphinx usa «index» de manera predeterminada com a root_doc. Afegiu «root_doc = 'contents'» al vostre conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "L'esdeveniment %r ja està present" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nom desconegut de l'esdeveniment: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "El gestor %r per a l'esdeveniment %r ha retornat una excepció" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "L'extensió %s és requerida per la configuració de needs_extensions, però aquesta no està carregada." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Aquest projecte necessita l'extensió %s almenys a la versió %s i, per tant, no es pot construir amb la versió carregada (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "No es coneix el nom del lexer de pigments %r" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "" +msgstr "L'anàlisi lèxica del literal_block %r com a «%s» ha resultat en un error en el testimoni: %r. S'està tornant a provar en el mode relaxat." -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "s'han trobat múltiples fitxers per al document «%s»: %r\nUseu %r per a la compilació." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "S'ha ignorat el document il·legible %r." -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "La classe del constructor %s no té cap atribut «name»" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "El constructor %r ja existeix (al mòdul %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "El nom del constructor %s no està registrat o disponible a través del punt d'entrada" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "El nom del constructor %s no està registrat" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "el domini %s ja està registrat" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "el domini %s encara no està registrat" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "La directiva %r ja està registrada al domini %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "El rol %r ja està registrat al domini %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "L'índex %r ja està registrat al domini %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "L'object_type %r ja està registrat" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "El crossref_type %r ja està registrat" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r ja està registrat" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser per a %r ja està registrat" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "L'analitzador de fonts per a %s no registrat" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "El traductor per a %r ja existeix" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs per a add_node() haurà de ser una funció (visita, sortida) tupla: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r ja està registrat" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "la representació matemàtica %s ja està registrada" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "l'extensió %r ja es va fusionar amb Sphinx des de la versió %s. Aquesta extensió s'ignorarà." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Excepció original:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "No s'ha pogut importar l'extensió %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "l'extensió %r no té cap funció setup(). És realment un mòdul d'extensions de Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "L'extensió %s usada per aquest projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb aquesta versió." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "l'extensió %r ha retornat un objecte no admès des de la seva funció setup(). No n'hauria de retornar cap o retornar un diccionari de metadades" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Propostes de millora a Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "número de PEP no vàlid %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "número de RFC no vàlid %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "el tema %r no té la configuració «theme»" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "el tema %r no té la configuració «inherit» (heretat)" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "no s'ha trobat cap tema anomenat %r, heretat per %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "configuració %s. %s no es produeix en cap de les configuracions de temes cercats" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "opció de tema no admesa, s'ha donat %r" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "el fitxer %r en el camí de temes no és un fitxer ZIP vàlid ni conté cap tema" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "no s'ha trobat cap tema anomenat %r (manca theme.toml?)" + +#: sphinx/theming.py:259 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "no s'ha trobat cap tema anomenat %r (manca el theme.conf?)" +msgid "The %r theme has circular inheritance" +msgstr "El tema %r té una herència circular" + +#: sphinx/theming.py:262 +#, python-format +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "El tema %r hereta des de %r, el qual no és un tema que estigui carregat. Els temes carregats són: %s" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "El tema %r té massa avantpassats" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "no s'ha trobat cap fitxer de configuració del tema a %r" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "el tema %r no té la taula «theme»." + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "La taula del tema %r «[theme]» no és una taula" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "El tema %r ha de definir la configuració «theme.inherit»." + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "La taula del tema %r «[options]» no és una taula" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "La configuració de «theme.pygments_style» ha de ser una taula. Consell: «%s»" #: sphinx/builders/__init__.py:183 #, python-format @@ -530,8 +572,8 @@ msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s" msgid "building [mo]: " msgstr "s'estan construint [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "s'està escrivint la sortida..." @@ -580,7 +622,7 @@ msgstr "%d fitxers font proporcionats a la línia d'ordres" msgid "targets for %d source files that are out of date" msgstr "els objectius per a %d fitxers font que estan desfasats" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "s'està construint [%s]: " @@ -589,50 +631,50 @@ msgstr "s'està construint [%s]: " msgid "looking for now-outdated files... " msgstr "s'està cercant per fitxers sense actualitzar... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "s'han trobat %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "no se n'ha trobat cap" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "s'està preparant l'ambient" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "s'està comprovant la coherència" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "no hi ha cap objectiu desfasat." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "s'està actualitzant l'entorn: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s afegits, %s canviats, %s eliminats" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "s'estan llegint les fonts... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "els docname que s'escriuran: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "s'estan preparant els documents" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "s'estan copiant els recursos" @@ -641,36 +683,36 @@ msgstr "s'estan copiant els recursos" msgid "duplicated ToC entry found: %s" msgstr "s'ha trobat una entrada ToC duplicada: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "s'estan copiant les imatges... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "no s'ha pogut llegir el fitxer d'imatge %r: en el seu lloc, es copia" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "no s'ha pogut copiar el fitxer d'imatge %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "no s'ha pogut escriure el fitxer d'imatge %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "No s'ha trobat el Pillow: es copien els fitxers d'imatge" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "s'està escrivint un fitxer de tipus MIME..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "s'està escrivint el fitxer META-INF/container.xml..." @@ -678,470 +720,470 @@ msgstr "s'està escrivint el fitxer META-INF/container.xml..." msgid "writing content.opf file..." msgstr "s'està escrivint el fitxer content.opf..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "tipus MIME desconegut per a %s, s'ignora" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "s'està escrivint el fitxer toc.ncx..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "s'està escrivint el fitxer %s..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "El fitxer de vista general es troba a %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "no hi ha canvis en la versió %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "s'està escrivint el fitxer de vista general..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Elements incorporats" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Nivell de mòdul" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "s'estan copiant els fitxers font..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "no s'ha pogut llegir %r per a la creació del registre de canvis" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "El constructor fictici no genera cap fitxer." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "El fitxer ePub es troba a %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "s'està escrivint el fitxer nav.xhtml..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "el valor de configuració «epub_language» (o «language») no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "el valor de configuració «epub_uid» haurà de ser un XML NAME per a EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "el valor de configuració «epub_title» (o «html_title») no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "el valor de configuració «epub_author» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "el valor de configuració «epub_contributor» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "el valor de configuració «epub_description» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "el valor de configuració «epub_publisher» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "el valor de configuració «epub_copyright» (o «copyright») no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "el valor de configuració «epub_identifier» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "el valor de configuració «version» no pot estar buit per a EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file no vàlid: %r, s'ignora" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Els catàlegs de missatges es troben a %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "objectius per a %d fitxers de plantilla" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "s'estan llegint les plantilles... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "s'estan escrivint els catàlegs de missatges... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Cerqueu qualsevol error a la sortida anterior o en el fitxer %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "enllaç trencat: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Ha fallat en compilar expressions regulars a linkcheck_allowed_redirects: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Les pàgines del manual es troben a %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "no s'ha trobat el valor de configuració «man_pages»: no s'escriuran les pàgines del manual" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "s'està escrivint" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "El valor de configuració «man_pages» fa referència a un document %s desconegut" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "La pàgina HTML es troba a %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "s'està muntant un únic document" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "s'estan escrivint els fitxers addicionals" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Els fitxers de Texinfo es troben a %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nExecuteu l'ordre «make» en aquest directori per a executar-les mitjançant\nde makeinfo (useu l'ordre «make info» per a fer-ho automàticament)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "no s'ha trobat el valor de configuració «texinfo_documents»: no s'escriurà cap document" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "El valor de configuració «texinfo_documents» fa referència a un document %s desconegut" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "s'està processant %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "s'estan resolent les referències..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (a " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "s'estan copiant els fitxers de suport de Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "error en escriure el fitxer Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Els fitxers de text es troben a %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "error en escriure al fitxer %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Els fitxers en XML es troben a %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Els fitxers en pseudo XML es troben a %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "el fitxer d'informació de la compilació està trencat: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Les pàgines en HTML es troben a %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Ha fallat en llegir el fitxer d'informació de la construcció: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%-d %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex general" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "índex" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "següent" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "s'estan generant els índexs" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "s'estan escrivint les pàgines addicionals" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "s'estan copiant els fitxers que es poden baixar... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no s'ha pogut copiar el fitxer que es podia baixar %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Ha fallat en copiar un fitxer a html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "s'estan copiant els fitxers estàtics" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "no s'ha pogut copiar el fitxer estàtic %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "s'estan copiant els fitxers addicionals" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "no s'ha pogut copiar el fitxer addicional %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Ha fallat en escriure el fitxer d'informació de la construcció: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "no s'ha pogut carregar l'índex de cerca, i no es construiran tots els documents: l'índex estarà incomplet." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "la pàgina %s coincideix amb dos patrons a html_sidebars: %r i %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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'ha produït un error d'Unicode en representar la pàgina %s. Assegureu-vos que tots els valors de configuració que contenen contingut que no és ASCII són cadenes Unicode." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "S'ha produït un error en representar la pàgina %s.\nMotiu: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "s'està bolcant l'inventari d'objectes" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "s'està bolcant l'índex de cerca a %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file no vàlid: %r, s'ignora" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "S'han enregistrat molts math_renderer. Però no s'ha seleccionat math_renderer." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "S'ha donat un math_renderer %r desconegut." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "l'entrada html_extra_path %r no existeix" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "l'entrada html_extra_path %r es col·loca dins del directori de sortida" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "l'entrada html_static_path %r no existeix" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "l'entrada html_static_path %r es col·loca dins del directori de sortida" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "el fitxer de logotip %r no existeix" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "el fitxer icona de web %r no existeix" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 ja no és compatible amb Sphinx. (s'ha detectat «html4_writer=true» a les opcions de configuració)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Els fitxers en LaTeX es troben a %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nExecuteu l'ordre «make» en aquest directori per a executar-les\nmitjançant (pdf)latex (useu l'ordre «make latexpdf» per a fer-ho\nautomàticament)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "no s'ha trobat el valor de configuració «latex_documents»: no s'escriurà cap document" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "El valor de configuració «latex_documents» fa referència a un document %s desconegut" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Índex" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Versió" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "no es coneix l'opció de Babel per a l'idioma %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "s'estan copiant els fitxers de suport de TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "s'estan copiant els fitxers de suport de TeX..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "s'estan copiant els fitxers addicionals" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Clau de configuració desconeguda: latex_elements[%r], s'ignora." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Opció desconeguda de tema: latex_theme_options[%r], s'ignora." @@ -1156,15 +1198,15 @@ msgstr "%r no té la configuració «theme»" msgid "%r doesn't have \"%s\" setting" msgstr "%r no té la configuració «%s»" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "Ha fallat en obtenir el docname!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "Ha fallat en obtenir un docname per a l'origen {source!r}!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "No s'ha trobat cap nota a peu de pàgina per al node de referència %r donat" @@ -1223,8 +1265,8 @@ msgstr "Es pot presentar un informe d'error en el seguidor ." msgstr "Per a més informació, visiteu ." @@ -1256,257 +1298,264 @@ msgid "path to output directory" msgstr "camí cap al directori de sortida" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "una llista de fitxers específics que s'han de reconstruir. S'ignorarà si s'especifica -a" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "(opcional) una llista de fitxers específics que s'han de reconstruir. S'ignorarà si s'especifica «--write-all»" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "opcions generals" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "constructor que s'usarà (predeterminat: html)" +msgid "builder to use (default: 'html')" +msgstr "constructor que s'usarà (predeterminat: «html»)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "executa en paral·lel amb N processos, quan sigui possible. «auto» uxa el nombre de nuclis de la CPU" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "escriu tots els fitxers (predeterminat: només escriu els fitxers nous i els que han canviat)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "no usar un entorn desat, llegeix sempre tots els fitxers" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "camí per a l'entorn en la memòria cau i els fitxers doctree (predeterminat: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "construeix en paral·lel amb N processos quan sigui possible (el valor especial «auto» estableix N al recompte de CPU)" +msgid "path options" +msgstr "opcions de camí" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "camí on es troba el fitxer de configuració (conf.py) (predeterminat: igual que el SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "directori per als fitxers doctree i d'entorn (predeterminat: OUTPUT_DIR/.doctrees)" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "no usar cap fitxer de configuració, només les opcions -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "directori per al fitxer de configuració (conf.py) (predeterminat: SOURCE_DIR)" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "no usa cap fitxer de configuració, només usa la configuració de les opcions de «-D»" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "superposa una configuració en el fitxer de configuració" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "passa un valor a les plantilles HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "defineix l'etiqueta: inclou blocs «only» amb TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "Mode exhaustiu, adverteix sobre totes les referències que manquen" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "mode exigent: avisa de totes les referències que manquen" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "opcions de sortida de la consola" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "augmenta la loquacitat (es pot repetir)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "sense sortida a la sortida estàndard, només avisos a la sortida d'error estàndard" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "sense sortida, ni tan sols els avisos" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "emet una sortida amb colors (predeterminada: detecció automàtica)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "no emetre una sortida amb colors (predeterminada: detecció automàtica)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "opcions de control d'avís" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "escriviu els avisos (i errors) al fitxer indicat" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "converteix els avisos en errors" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "amb -w, se seguirà endavant quan es rebin avisos" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "amb «--fail-on-warning», se segueix endavant quan es reben avisos" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "mostra la traça completa en excepció" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "executa Pdb en excepció" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "no es pot combinar l'opció -a i els noms de fitxer" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "no s'ha pogut obrir el fitxer d'avisos %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" -msgstr "l'argument de l'opció -D haurà d'estar en la forma «nom=valor»" +msgstr "l'argument de l'opció «-D» haurà d'estar en la forma «nom=valor»" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "l'argument de l'opció -A haurà d'estar en la forma «nom=valor»" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "insereix automàticament les docstring des dels mòduls" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "prova automàticament els fragments de codi en els blocs doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "enllaç entre la documentació de Sphinx de projectes diferents" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "escriu les entrades «todo» que es poden mostrar o ocultar durant la construcció" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "comprovacions per a la cobertura de la documentació" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "inclou expressions matemàtiques, mostrades com a imatges PNG o SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "inclou expressions matemàtiques, representades en el navegador per MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "inclusió condicional de contingut basat en els valors de la configuració" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "inclou els enllaços cap al codi font dels objectes documentats en Python" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "crea un fitxer .nojekyll per a publicar el document a les pàgines de GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Si us plau, introduïu un nom de camí vàlid." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Si us plau, introduïu algun text." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Si us plau, introduïu un dels %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Si us plau, introduïu qualsevol de «y» o «n»." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Si us plau, introduïu un sufix de fitxer, p. ex., «.rst» o «.txt»." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Us donem la benvinguda a la utilitat d'inici ràpid de Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Introduïu els valors per a les configuracions següents (només premeu «Retorn»\nper a acceptar un valor predeterminat, si se'n dona un entre parèntesis)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Camí arrel seleccionat: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Introduïu el camí arrel per a la documentació." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Camí arrel per a la documentació" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Error: ja existeix un fitxer conf.py en el camí arrel seleccionat." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "«sphinx-quickstart» no sobreescriurà els projectes de Sphinx existents." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Introduïu un camí arrel nou (o premeu «Retorn» per a sortir)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Teniu dues opcions per a col·locar el directori de construcció per a la\nsortida de Sphinx. O useu un directori «_build» dins del camí arrel,\no els directoris separats «source» i «build» dins del camí arrel." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Separa els directoris «source» i «build» (s/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Dins del directori arrel, es crearan dos directoris més: «_templates» per a\nles plantilles HTML personalitzades i «_static» per als fulls d'estil\npersonalitzats i altres fitxers estàtics. Podeu introduir un altre prefix\n(com «.») per a substituir el guió baix." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Prefix de nom per als directoris «templates» i «static»" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "El nom del projecte apareixerà en diversos llocs de la documentació construïda." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Nom del projecte" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Noms de l'autoria" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx té la noció d'una «versió» i un «llançament» per al programari.\nCada versió pot tenir múltiples versions. Per exemple, per a Python,\nla versió és una cosa semblant a 2.5 o 3.0, mentre que el llançament és\ncom 2.5.1 o 3.0a1. Si no necessiteu aquesta doble estructura, senzillament\nestabliu ambdues amb el mateix valor." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Versió del projecte" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Llançament del projecte" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Si els documents s'han d'escriure en un idioma que no sigui l'anglès,\npodeu seleccionar un idioma aquí per al vostre codi d'idioma.\nA continuació, Sphinx traduirà el text que es genera en aquest idioma.\n\nPer a obtenir una llista dels codis admesos, vegeu\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Idioma del projecte" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "El sufix del nom del fitxer per als fitxers d'origen. Normalment, aquest és\n«.txt» o «.rst». Només els fitxers amb aquest sufix es consideraran documents." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Sufix del fitxer font" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Un document és especial perquè es considera el node superior de l'«arbre de\ncontingut», és a dir, és l'arrel de l'estructura jeràrquica dels documents.\nNormalment, es tracta de l'«index», però si el document «index» és una\nplantilla personalitzada, també podreu establir-la a un altre nom de fitxer." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Nom del document mestre (sense sufix)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Error: el fitxer mestre %s ja es troba en el camí arrel seleccionat." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "«sphinx-quickstart» no sobreescriurà el fitxer existent." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Introduïu un nom de fitxer nou o canvieu-ne el nom i premeu «Retorn»" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Indiqueu quines de les extensions següents de Sphinx haurien d'estar habilitades:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Nota: «imgmath» i «mathjax» no es poden habilitar alhora. «imgmath» ha estat desseleccionat." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Es pot generar un fitxer Makefile i un fitxer d'ordres de Windows,\nde manera que només haureu d'executar, p. ex., «make html»\nen lloc d'invocar directament «sphinx-build»." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Voleu crear el Makefile? (s/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Voleu crear el fitxer d'ordres de Windows? (s/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "S'està creant el fitxer %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "El fitxer %s ja existeix, se salta." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Finalitzat: s'ha creat una estructura inicial del directori." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Ara heu de completar el fitxer mestre %s i crear altres fitxers font de documentació. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Useu el Makefile per a construir els documents, com segueix:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Useu l'ordre «sphinx-build» per a construir els documents, com segueix:\n sphinx-build -b constructor %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "on «constructor» és un dels constructors admesos, p. ex., html, latex o linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nGenereu els fitxers necessaris per a un projecte Sphinx.\n\n«sphinx-quickstart» és una eina interactiva que fa algunes preguntes sobre el\nprojecte i després genera un directori complet de documentació i un\nexemple del fitxer Makefile per a ser usat amb l'ordre «sphinx-build».\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "mode silenciós" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "arrel del projecte" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Opcions de l'estructura" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "Si s'especifica, se separarà el codi font i els directoris de compilació" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "Si s'especifica, es crearà el directori de construcció a dins del directori d'origen" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "substitució per a punts a _templates, etc." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Opcions bàsiques del projecte" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "nom del projecte" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "noms de l'autoria" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "versió del projecte" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "llançament del projecte" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "idioma del document" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "sufix del fitxer font" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "nom del document mestre" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "usa epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Opcions de l'extensió" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "habilita l'extensió %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "habilita les extensions arbitràries" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Creació dels fitxers Makefile i de processament per lots" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "es crea el Makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "no es crea el Makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "es crea el fitxer de processament per lots" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "no es crea el fitxer de processament per lots" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "usa el mode make per a Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "no usis el mode make per a Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Plantilles de projecte" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "directori de plantilles per als fitxers de plantilla" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "defineix una variable de plantilla" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "s'especifica «quiet», però no s'especifica cap «project» o «author»." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Error: el camí especificat no és un directori o ja hi ha els fitxers de Sphinx." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "«sphinx-quickstart» només generarà dins d'un directori buit. Especifiqueu un camí arrel nou." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Variable no vàlida de plantilla: %s" @@ -1828,47 +1877,47 @@ msgstr "No podeu usar «lineno-match» amb un conjunt desarticulat de «línies msgid "Line spec %r: no lines pulled from include file %r" msgstr "Línia específica %r: No hi ha cap línia llançada des del fitxer inclòs %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "El patró global toctree %r no coincideix amb cap document" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "el toctree conté una referència cap al document exclòs %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "el toctree conté una referència cap al document %r, el qual no existeix" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "s'ha trobat una entrada duplicada en el toctree: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor de la secció:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor del codi: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "... el contingut dels reconeixements no és una llista" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "... el contingut de l'historial no és una llista" @@ -1883,82 +1932,10 @@ msgstr "«:file:» l'opció per a la directiva «csv-table» ara reconeix un cam msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Declaració de C duplicada, també definida a %s:%s.\nLa declaració és «.. c:%s:: %s»." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Paràmetres" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "Valors retornats" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Retorna" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tipus de retorn" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membre" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variable" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funció" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "estructura" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "unió" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enumera" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "numerador" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipus" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "paràmetre de la funció" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Novetat de la versió %s" +msgid "Added in version %s" +msgstr "Afegit a la versió %s" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "Canviat a la versió %s" msgid "Deprecated since version %s" msgstr "Obsolet des de la versió %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "S'ha eliminat a la versió %s" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "citació duplicada %s, una altra instància a %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "No es fa referència a la citació [%s]." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Paràmetres de la plantilla" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Llançaments" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "classe" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "concepte" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "paràmetre de la plantilla" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable global o constant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Llançaments" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Retorna" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipus de retorn" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funció" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "mètode" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "classe" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dades" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "mòdul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "descripció %s duplicada de %s, una altra %s a %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de l'equació %s, una altra instància a %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format no vàlid: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Llença" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (opció de la directiva)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "opció_de_la_directiva" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rol" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "descripció duplicada del %s %s, una altra instància a %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Declaració de C duplicada, també definida a %s:%s.\nLa declaració és «.. c:%s:: %s»." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Paràmetres" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Valors retornats" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membre" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variable" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "estructura" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "unió" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enumera" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "numerador" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipus" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "paràmetre de la funció" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Paràmetres de la plantilla" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concepte" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "paràmetre de la plantilla" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (classe a %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (mètode de classe %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (propietat %s)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Índex de mòduls en Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "excepció" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "mètode de classe" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "propietat" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "descripció de l'objecte duplicat de %s, una altra instància a %s, ús «:no-index:» per a un d'ells" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "s'ha trobat més d'un objectiu per a la referència creuada %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (obsolet)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directiva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (opció de la directiva)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rol)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directiva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "opció_de_la_directiva" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rol" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variables" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "descripció duplicada del %s %s, una altra instància a %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Llença" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variable d'entorn; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descripció de l'opció amb format incorrecte %r, s'ha de veure com «opt», «-opt args», «--opt args», «/opt args» o «+opt args»" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "opció de la línia d'ordres %s" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "opció de la línia d'ordres" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "el terme del glossari ha d'estar precedit per una línia buida" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "els termes del glossari no han d'estar separats per línies buides" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "el glossari sembla estar mal formatat, verifiqueu el sagnat" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "terme del glossari" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "gramàtica simbòlica" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "etiqueta de referència" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opció del programa" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "document" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Índex de mòduls" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de cerca" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, una altra instància a %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "descripció %s duplicada del %s, una altra instància a %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "«numfig» està desactivat. :numref: s'ignora." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Ha fallat en crear una referència creuada. No s'assigna cap número: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "l'enllaç no té cap subtítol: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format no vàlid: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format no vàlid: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "etiqueta sense definir: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Ha fallat en crear una referència creuada. No es troba un títol o subtítol: %r" @@ -2326,35 +2380,35 @@ msgstr "configuració modificada" msgid "extensions changed" msgstr "extensions modificades" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "la versió de l'entorn de compilació no és actual" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "el directori d'origen ha estat modificat" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Aquest entorn és incompatible amb el constructor seleccionat, trieu un altre directori doctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Ha fallat en escanejar els documents a %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "El domini %r no està registrat" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "el document no està inclòs en cap toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "S'ha trobat un toctree autoreferenciat. S'ignora." @@ -2378,39 +2432,39 @@ msgstr "tipus d'entrada %r amb un índex desconegut" msgid "Symbols" msgstr "Símbols" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "s'han detectat referències circulars del toctree, s'ignora: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "el toctree conté una referència cap al document %r, el qual no conté un títol: no es generarà cap enllaç" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "el toctree conté una referència cap a un document no inclòs %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "el fitxer d'imatge no es pot llegir: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "el fitxer d'imatge %s no es pot llegir: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "el fitxer de baixada no es pot llegir: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s ja té assignats números de secció (toctree amb numeració imbricada?)" @@ -2420,7 +2474,7 @@ msgstr "%s ja té assignats números de secció (toctree amb numeració imbricad msgid "Would create file %s." msgstr "S'hauria de crear el fitxer %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nMireu recursivament a per als mòduls i paquets de Python\ni creeu un fitxer reST amb les directives «automodule» per paquet en el .\n\nEls poden ser fitxers i/o patrons de directori que seran\nexclosos de la generació.\n\nNota: De manera predeterminada, aquest script no sobreescriurà els fitxers que ja s'han creat." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "camí cap al mòdul que es documenta" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fitxer d'estil fnmatch i/o patrons de directori que s'exclouran de la generació" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "directori per a col·locar tota la sortida" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "profunditat màxima dels submòduls que es mostraran a la TOC (predeterminada: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "sobreescriu els fitxers existents" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "seguir els enllaços simbòlics. Potent quan es combina amb el paquet collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "executa l'script sense crear els fitxers" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "posa la documentació per a cada mòdul a la seva pròpia pàgina" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "inclou «_private» en els mòduls" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "nom de fitxer de la taula de contingut (predeterminat: mòduls)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "no crea un fitxer de taula de contingut" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "no crea capçaleres per als paquets del mòdul/paquet (p. ex., quan les cadenes de documentació ja les contenen)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "posa la documentació del mòdul abans de la documentació del submòdul" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpreta els camins dels mòduls segons l'especificació d'espais de noms implícits al PEP-0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "sufix del fitxer (predeterminat: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "genera un projecte complet amb «sphinx-quickstart»" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" -msgstr "afegeix module_path a sys.path, s'usa quan s'indica el paràmetre --full" +msgstr "afegeix module_path a sys.path, s'usa quan s'indica el paràmetre «--full»" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "nom del projecte (predeterminat: nom del mòdul arrel)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" -msgstr "autoria del projecte, s'usa quan s'indica el paràmetre --full" +msgstr "autoria del projecte, s'usa quan s'indica el paràmetre «--full»" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" -msgstr "versió del projecte, s'usa quan s'indica el paràmetre --full" +msgstr "versió del projecte, s'usa quan s'indica el paràmetre «--full»" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "llançament del projecte, s'usa quan s'indica el paràmetre --full" +msgstr "llançament del projecte, s'usa quan s'indica el paràmetre «--full», predeterminat a «--doc-version»" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "opcions de l'extensió" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s no és cap directori." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "la secció «%s» s'etiqueta com a «%s»" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "expressions regulars no vàlides %r a %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Proves de cobertura en les fonts acabades, mireu el resultat a %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "expressions regulars no vàlides %r a coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API de C sense documentar: %s [ %s] en el fitxer %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "el mòdul %s no s'ha pogut importar: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "funció de Python sense documentar: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "classe de Python sense documentar: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "mètode de Python sense documentar: %s :: %s :: %s" @@ -2598,24 +2652,24 @@ msgstr "«%s» no és una opció pyversion vàlida" msgid "invalid TestCode type" msgstr "tipus de TestCode no vàlid" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Proves de doctests en les fonts acabades, mireu el resultat a %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "no hi ha codi/sortida en el bloc %s a %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "s'ignora el codi doctest no vàlid: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "==================== durades de lectura més lentes =====================" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "l'enllaç codificat %r podria substituir-se per un enllaç extern (en el seu lloc intenteu usar %r)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "La directiva del Graphviz no pot tenir tant el contingut com un argument del nom de fitxer" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "El fitxer extern %r del Graphviz no s'ha trobat ni es pot llegir" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "S'està ignorant la directiva «graphviz» sense contingut." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "S'ha d'establir el camí de l'executable «graphviz_dot»! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "l'ordre «dot» %r no s'ha pogut executar (necessària per a la sortida del Graphviz), comproveu la configuració de «graphviz_dot»" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "«dot» ha sortit amb un error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "«dot» no ha produït un fitxer de sortida:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format haurà de ser un de «png» o «svg», però és %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "codi del «dot» %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[gràfica: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[gràfica]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "No es pot executar l'ordre de conversió d'imatges %r. «sphinx.ext.imgconverter» requereix de manera predeterminada ImageMagick. Assegureu-vos que està instal·lat o configureu l'opció «image_converter» a una ordre de conversió personalitzada.\n\nTraça: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "«convert» ha sortit amb un error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "l'ordre «convert» %r no s'ha pogut executar, comproveu la configuració d'«image_converter»" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "l'ordre de LaTeX %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_latex»" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s l'ordre de %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_%s»" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "visualització de latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "latex inclòs %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Enllaça amb aquesta equació" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "l'inventari intersphinx s'ha mogut: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "s'està carregant l'inventari intersphinx des de %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "s'ha fallat en arribar a cap dels inventaris amb els problemes següents:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(a %s versió %s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(a %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "no es troba l'inventari per a la referència creuada externa: %r" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "no es troba l'inventari per a la referència creuada externa: %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "no es troba l'inventari per a la referència creuada externa: %r" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "no es troba el rol per a la referència creuada externa: %s" +msgid "domain for external cross-reference not found: %r" +msgstr "no es troba el domini per a la referència creuada externa: %r" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "%s externa: no es troba la destinació de la referència %s: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "l'identificador %r d'intersphinx no és una cadena. S'ignora" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Ha fallat en llegir intersphinx_mapping[%s], s'ignora: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[font]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Tasca pendent" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "S'ha trobat una entrada TODO: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(L'<> es troba a %s, línia %d)." -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "s'està ressaltant el codi del mòdul... " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documents]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Codi del mòdul" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Codi font per a %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Vista general: codi del mòdul" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Tots els mòduls per als quals hi ha codi

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "valor no vàlid per a l'opció de l'ordre de membre: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "valor no vàlid per a l'opció des de la documentació de classes: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "signatura no vàlida per a auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "error mentre es donava format als arguments per a %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: ha fallat en determinar %s. %s (%r) que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "es desconeix quin és el mòdul que s'importarà per al document automàtic %r (proveu de col·locar una directiva «module» o «currentmodule» en el document o doneu-li un nom explícit al mòdul)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "S'ha detectat un objecte simulat: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "error mentre es donava format a la signatura per a %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "«::» en el nom de l'«automodule» no té sentit" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "arguments de signatura o anotació de retorn indicats per a «automodule» %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ ha de ser una llista de cadenes, no %r (en el mòdul %s) -s'ignora __all__-" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "manca l'atribut esmentat a l'opció «:members:»: mòdul %s, atribut %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Ha fallat en obtenir una signatura de funció per a %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Ha fallat en obtenir un constructor de funció per a %s: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "manca l'atribut %s a l'objecte %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "àlies de %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "àlies de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Ha fallat en obtenir una signatura de mètode per a %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "S'han trobat __slots__ no vàlids a %s. S'ignora." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Ha fallat en analitzar un valor d'argument predeterminat per a %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "Ha fallat en actualitzar la signatura per a %r: no es troba el paràmetre: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "Ha fallat en analitzar type_comment per a %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referències autosummary excloses del document %r. S'ignora." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: no s'ha trobat el fitxer stub %r. Verifiqueu la vostra configuració autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un resum automàtic amb subtítols requereix l'opció «:toctree:». S'ignora." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,26 +3055,26 @@ msgid "" "%s" msgstr "autosummary: ha fallat en importar %s.\nPossibles pistes:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "ha fallat en analitzar el nom %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "ha fallat en importar l'objecte %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: no s'ha trobat el fitxer: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary genera els fitxers .rst internament. Però el vostre source_suffix no en conté. S'omet." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "«autosummary» genera internament els fitxers «.rst». Però el vostre source_suffix no conté cap «.rst». S'omet." #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "documenta exactament els membres en l'atribut __all__ del mòdul. (predeterminat: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Arguments de paraules clau" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Exemple" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Exemples" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Notes" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Altres paràmetres" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "Rebudes" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Referències" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Rendiments" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "conjunt de valors no vàlid (manca el claudàtor de tancament): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "conjunt de valors no vàlid (manca el claudàtor d'obertura): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "Cadena incorrecta literal (manquen les cometes de tancament): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "Cadena incorrecta literal (manquen les cometes d'obertura): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Atenció" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Compte" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Perill" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Suggeriment" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Vegeu també" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Truc" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Avís" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "Taula de continguts" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Cerca" @@ -3345,34 +3404,22 @@ msgstr "Tema següent" msgid "next chapter" msgstr "capítol següent" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activa JavaScript per a usar la funcionalitat\n de cerca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Cercar múltiples paraules només mostrarà les coincidències\n que continguin totes les paraules." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Resultats de la cerca" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "La vostra cerca no ha coincidit amb cap document. Assegureu-vos que s'escriuen correctament totes les paraules i que heu seleccionat prou categories." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Cerca ràpida" @@ -3409,20 +3456,30 @@ msgstr "Canvis a l'API de C" msgid "Other changes" msgstr "Altres canvis" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Resultats de la cerca" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "La vostra cerca no ha coincidit amb cap document. Assegureu-vos que s'escriuen correctament totes les paraules i que heu seleccionat prou categories." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "Cerca acabada, s'han trobat ${resultCount} pàgines que coincideixen amb la consulta de cerca." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "S'està cercant" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "S'està preparant la cerca..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", a " @@ -3443,30 +3500,30 @@ msgstr "Expandeix la barra lateral" msgid "Contents" msgstr "Contingut" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "no s'ha pogut calcular el progrés de la traducció!" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "No hi ha cap element traduït!" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "S'ha trobat un índex basat en 4 columnes. Pot ser un error de les extensions que utilitzeu: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "La nota al peu [%s] no té una referència." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "La nota al peu [núm.] no té una referència." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "referències incoherents en el missatge traduït. Original: {0}, traduït: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referències incoherents de citació en el missatge traduït. Original: {0}, traduït: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "%s:%s no es troba la destinació de la referència: %s" msgid "%r reference target not found: %s" msgstr "%r no es troba la destinació de la referència: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "No s'ha pogut recuperar la imatge remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "No s'ha pogut recuperar la imatge remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Format d'imatge desconegut: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caràcters font no codificables, substituint per «?»: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "s'omet" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "ha fallat" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "Problema en el domini %s: se suposa que el camp usa el rol «%s», però no es troba en el domini." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "directiva o nom de rol desconegut: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "tipus de node desconegut: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "error de lectura: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "error d'escriptura: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "locale_dir %s no existeix" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Format de data no vàlid. Citeu la cadena amb cometes senzilles si voleu generar-la directament: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r està en desús per a les entrades d'índex (des de l'entrada %r). En el seu lloc useu «pair: %s»." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "el toctree conté una referència cap al fitxer %r que no existeix" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "excepció mentre només s'avaluava l'expressió directiva: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "no s'ha trobat el rol predeterminat %s" @@ -3617,27 +3674,27 @@ msgstr "Qualsevol ID no assignat per al node %s" msgid "Link to this term" msgstr "Enllaça amb aquest terme" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "Enllaça amb aquesta capçalera" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "Enllaça amb aquesta taula" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "Enllaça amb aquest codi" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "Enllaça amb aquesta imatge" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "Enllaça amb aquest toctree" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "No s'ha pogut obtenir la mida de la imatge. S'ignora l'opció «:scale:»." @@ -3654,13 +3711,13 @@ msgstr ":maxdepth: massa gran, s'ignora." msgid "document title is not a single Text node" msgstr "el títol del document no és només un node de text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "el node del títol no s'ha trobat en la secció, tema, taula, advertiment o nota al marge" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notes al peu" @@ -3679,20 +3736,20 @@ msgstr "la unitat de dimensió %s no és vàlida. S'ignora." msgid "unknown index entry type %s found" msgstr "s'ha trobat el tipus d'entrada %s amb un índex desconegut" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[imatge: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[imatge]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "el subtítol no es troba dins d'una figura." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "tipus de node sense implementar: %r" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 0adb8c6bb4712c781600815e03ede039939827a8..708a4e1c42ee39d4c5869a615db1f7977b5782ca 100644 GIT binary patch delta 35 rcmcaEbX{meBrC6pu7QcJp^1W#v6Yee<}_A!MrIQ|gUuV*mNNkWvB?Q~ delta 35 rcmcaEbX{meBrC76u7QQFp}B&giIu6v<}_A!MrI>D!_6DmmNNkWvVjSM diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 503a89bffdb..ba6e6ef03c2 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://app.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Ruwachib'äl %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Kik'ajtz'ïk %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "tajin nutz'ib'aj" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(chupam" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Konojel cholwuj" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "cholwuj" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "jun chïk" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "chi rij kan" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Cholwuj" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Ütz apetïk pa rokisanem runuk'ik Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Rub'i' samäj" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Kib'i' ajtz'ib'anel(a')" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Rujalwäch samäj" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Ruch'ab'äl samaj" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Jalajöj" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "retal jalöj" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" +msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/changeset.py:23 +#: sphinx/domains/javascript.py:331 #, python-format -msgid "New in version %s" +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "Ruwäch" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "Ruwäch" +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Jalajöj" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "retal jalöj" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Retal jalöj" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Retal jalöj" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "wuj" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(chupam %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Chi tiqib'ana'" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Ri <> k'o chupam %s, pa juch' %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Tz'etb'äl" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Tz'etb'äl" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Jalajöj chïk" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Sachoj" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Tatz'u chuqa'" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3342,34 +3401,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3406,20 +3453,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", pa" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "rusachoj rusik'inïk: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "rusachoj rutz'ib'axïk: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[wachib'äl: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[wachib'äl]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 84585aa6f31ddcf842f22e85e7c0d49712a74d1f..ab15ff435845501ab0d43057b4367dc545992bf0 100644 GIT binary patch delta 2411 zcmYM#e@I?c7{Kx4_NsI0yJ>UNW@+l!BrWI6xs*zA)Dof}5Ji+5Y(+xSz$O%NW1}Kn z#0sg6Y9*UgP!exHppmQ}Yq4O^a#99Ltr7Uo#z=~+(f9j$AbEX1_ndprd7kr}d+$5n z@kK{6Q<@qH{2k!GlK&$qTmSzx6ogPrvk`N#9r=XL*zUnAXy1h;xGS~?aW(B>T#2KY z#tc^Dm&o-=ILARD9rMU1mgH#+`VG{FPdgs=i67Q-;J{k6WQ}M7-RKJM#wGZ0Y(I+b($na;z39aI(L`U4zJrdR zz-#afuE0Og#8L!FI1Vc~@I)n&WN1M9+t3TQM(;!eKY)C~cD`JBKN@%tz5Ye)!q?CQ zenwY(0qgK`?5|Bze*&oo@!6e=hc4N>hIaEYM*Bxs+ik7NIL$iJmV*2UejIug4*5L&trE1~`RYHx=76 zu|0<-atW`(1$5qugxMTei|*m|Xhm*7AIB~XBlFRy5#NWUg>W?C(Xlq90jg7(&M% zLgO693LIN(C*e2;R^TL>`48yL^b0!hPc+a!Si@tGTe^7N2Fl?1R`h&3y3%fR{OxE0 z+tErrjwbd3GF3Q=-hbg!4(jRn23^TT^e)a}7E4})KIf~^^BZHk3th>BXhjB*+`@C{ z_=9MIN3a3k#j9}&`Gk4C3Vi+xdFTyPhS{48x6odXPPhY|Z~)zc1f5`iY>&qFIGV@_ zv=WnO;?rn_=P|o5UZ)&}B22unmIGh0^?aE?CsKs44QufsG?Be%2}jTu(uY`uAE7Iq zL<9YV20D)>a1pIkA^Tw9by$ZT<<#FmJLs?id(c47peuO=op2Q0%MZ}Ko$Vw~iT?q8DsHOVxzl3!P{pyU>;N zp(`IiatOm{#m3OU4j~+}Kjxyy?c~&6%OnV>wG(u4~HNw(9LvW}*Da-2VWS C2hQUF delta 2461 zcmYM!3uu;A7{Kw9+uWsH+QnU(n_te7(YCf(ZRH%K%(6uxcG1kPYqc^L&MivD*OZDP zVGN9hB}^J=Nm3&U7nvw#1d>^i5mrX&q7d?uWkvu0Jka>|{oZrVd(QKm=e+N?yXACC z@<>7I#=zeY|I_*3o@(p=zn07pa%j%OG;BvcVR39P$3oioVLtZ8_H$TFdlO!S?_e(O z!32Je+@B05xww#yw5;L?<&-UKfUX3Quk9@*9zO29?n!qqRZwJoD zooFKepgYg!YZfMQslNklbQo|MTDnfO^pBwl^~Ux<9Dg2*=pT&ZqsS+`&6lPA2(8Sw z=u!QQCin-sp1XDZ>^$o4KoK2Is6Z2#jVV}%?zAzEH=z@+Ll<6zFW{Z%yr0kjzoPe@ zjcsq942YBQu!8Z5Bo_vri%x7q&vG$Zkvq`WvI9+I0KNZNoU8!)R*c5}577Yok!pv7 z(eKc8e?!+ji8C?j!8%Zd?w~qaA8kT2Z$%SWh%V5MR5L6^13rYT86J=Q1L#o z(fJ>sadu;w@%P7$qi6*t(9BPx4^v9P`H5v{ph}#{>o6O=??%et!b{Qd73hXK(fKRU z1lFOI8bT9$6Z3ulKjy-n9L8!qj_#y@**?WpXvyo)_q`b%UlQ9L$WB5MU1u1{Eo?>S zkE03h!y5b)EAcE&^ZhU3r8hurvZk6;8@BfJ&cdt>_`n#eJ< z5@*oF|3)iZ!q4gC#xO}=sN=#L+mKIa=gR~hK#CC_#VULnP2@GSgzuq0Oowm=eueJz z3>xSh8YrE*n?M0tsaiDd^`+E*78iHZVW9PBC0<4YZ9#YPF1p}e^ejI^&-#1hF$ojs zvv3ZbpGg$&D@5ys3=(C%EXR!!zBCCbR?1_zN`C6KF-I(&>V^$mT)` z`ZQmGCVF-3Z$sy;KynIeV*ds-kx?|^@gx^!^hxYEga-NnE!{-yKNb6@PE76Kn?5TDY$S4S-g}6$U`$Pj_n5Yb!$cgw4o2z z?dVZ-q8oT*tU9wgHSdW;*Q!L{gR6VGx>qGG?HRizCp#@?PHla2Z9`L{;mT{TY94#I iVElrV#=3^F%Zf%)^Kb6%+p~=sPI{`#Df>#-ru_#IVAZ(* diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index ae63f855328..562d0289f11 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vilibald W. , 2014-2015\n" "Language-Team: Czech (http://app.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Vestavěné funkce" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (v " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "další" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Rejstřík" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Vydání" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor sekce: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,82 +1930,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametry" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Vrací" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Typ návratové hodnoty" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "člen" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "proměnná" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkce" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "typ" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nové ve verzi %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "Změněno ve verzi %s" msgid "Deprecated since version %s" msgstr "Zastaralé od verze %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Vyvolá" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "třída" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (třída)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Vyvolá" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Vrací" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Typ návratové hodnoty" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkce" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "třída" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Proměnné" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Vyvolá" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (role)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "role" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametry" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "člen" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "proměnná" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "typ" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "výjimka" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (zastaralé)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktiva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (role)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktiva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Proměnné" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Vyvolá" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "proměnná prostředí; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "termín v glosáři" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "token gramatiky" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "referenční návěstí" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "proměnná prostředí" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "volba programu" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Rejstřík modulů" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "Symboly" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[zdroj]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "původní záznam" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumentace]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Kód modulu" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Zdrojový kód pro %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Přehled: kód modulu" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Všechny moduly s dostupným kódem

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Upozornění" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Nebezpečí" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Důležité" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Viz také" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Varování" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Vyhledávání" @@ -3343,34 +3402,22 @@ msgstr "Další téma" msgid "next chapter" msgstr "další kapitola" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Pro podporu vyhledávání aktivujte JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "hledat" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Výsledky vyhledávání" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Rychlé vyhledávání" @@ -3407,20 +3454,30 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Výsledky vyhledávání" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Probíhá vyhledání" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Vyhledávání se připravuje..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", v " @@ -3441,30 +3498,30 @@ msgstr "Rozbalit boční lištu" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Poznámky pod čarou" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[obrázek: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[obrázek]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 343e8b04fa31685b7075b4163bdead8b5d049dca..1bfcdd32dd94f013bd519a5a6a82f19e518e612f 100644 GIT binary patch delta 1686 zcmYMzYiLe!9KiAa_H1J}ySdD@%}Ch8Y>(SQ5s4BK$vxYYg-{wV^tilOEHCDg%aYQ{ z<%QcLDPEAYPTi4&Jci--XbEh0IUlAiRhMxQ_;WjKmJl(S)zjLVsc(Ok**_P>8NC#r`-PNgSqP z3HifZ2I-tw`S(N!YcPZPcJ#(3H1J-uz~;!)Xh%|5jvZKl-I#+vFb^{b;`t)9W98`i zIOdQ))H=X9XyQd^g-ekbp$<*F30=1jXW=2VfT!q=-{1)RgeE9uu^kwRb}Ej2F@Y8` z50l=wlz}a*NA3-K(AFPB3ur@cXh#EHiO%0d*WX27n@8vdo}lYG(KxU0Abvm#*-0?t zC3ES&3tOTSN6`5hH1RncidUlRkI|R(MRffe`e@v)JI>-T981tdlOm_1h0R8OVIBuJ zzATUao2Y>kR=Nf4L=p|qh6C|zG{24H4ENAS@&wa)dETOhyeDcg_Mq=X8V}y}73lTx zScwzSN3}l5z_+^@t?(?G_#Do~OXxHEiU!D~%2F&sa)vQz!pV{I(GIRgx*ZzOcw5np zG@)@?u?UmL8Q6gf=u3AEE$9v!_$B(;^q>W1a+lY0(7+=jDz1Pl>yTe)<=``K zM_ZrzJLma7XJCMLXzMq6J} w^h-5neMnDj%>Eq9PsFPd@d=5t>YCc>$*IQtwzODcTve)fK~*fZptw8s2S|XBu>b%7 delta 1748 zcmYMzeMnwa9Ki9D&!+kQGTq#2<4!je(#>a1CPHJxhHccMKWq!4f^;F8fW5I;1;MszN$wm@Ne^l!Y3JiLYaE+Ql5;V8(*Inr0KKFCZx##}Q@4Vc5 zk9}O1UM$-%9{6?ef0X~>gth;F-Ps{*r1~0e!hVc!81wOR{QL?wP@lm^@D^5JPEH89 zxE&wH8a#*%SQtV&^itpoXSw;p;DZO@0+vvp!fiN%2KW{YxQL7qen$uV6HPRqPDNOX zG=&K5UyGY@A2M(_iklceoS=|JL)Usk2tBxg`Wxtr!)V}9G{K43X>>(C#hv&)7URE| zhq=65faPfWPISeRar@(#$N1qGg;H#@0bfNE=tDD2Au+=sn!q`<-z9tkKSUE*L1&)L z!(CW`CeVVeL@T;t&tN$|hiNnFqTq`ubSa0BSm9lC3*JW)xQ6!s3=McQZvO%8{|kD2 zZle>pgZBFejkAU$SWFNTIiJt^8*q}F9jDRy)wq5G9e4q^<4xoWe{u7${)ax_$~4`g zDs;xR+^Vn%9q452OK4)JkSlZ*u>Q{cG&KVaqnW;iuEZo7;2LhlxwyWFCh{A)C3i53 zLzKgQnMfWRUWO&;*{DYQA3>i#i**2lk_J#;_jWLne?8UsEu{Kafd=)z}<*JF_jZyU>A>=t?xB?>&vq z, 2016\n" "Language-Team: Welsh (http://app.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Lefel modiwl" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (yn " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indecs cyffredinol" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indecs" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "nesaf" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indecs" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Rhyddhad" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Awdur yr adran:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Awdur y fodiwl:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Awdur y cod:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Awdur:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,433 +1930,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" +msgstr "Wedi newid yn fersiwn %s" + +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" +msgstr "Dibrisiwyd ers fersiwn %s" + +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Paramedrau" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "aelod" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" +msgstr "%s (newidyn byd-eang neu cysonyn)" + +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "ffwythiant" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" +msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "ffwythiant" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" -msgstr "Newydd yn fersiwn %s" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "Wedi newid yn fersiwn %s" +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "modiwl" -#: sphinx/domains/changeset.py:25 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "Deprecated since version %s" -msgstr "Dibrisiwyd ers fersiwn %s" +msgid "duplicate %s description of %s, other %s in %s" +msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/math.py:63 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:213 #, python-format -msgid "%s (C++ %s)" +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (built-in function)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (%s method)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:167 -#, python-format -msgid "%s() (class)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Paramedrau" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" -msgstr "%s (newidyn byd-eang neu cysonyn)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "aelod" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" -msgstr "modiwl" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Indecs Modiwlau" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tudalen Chwilio" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "Symbolau" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graff: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graff]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[ffynhonnell]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "eitem wreiddiol" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Cod y modiwl" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Cod ffynhonnell ar gyfer %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Trosolwg: cod y modiwl" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Holl fodiwlau lle mae'r cod ar gael

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Sylw" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Gofal" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Perygl" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Gwall" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Awgrym" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Pwysig" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Nodyn" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Gweler hefyd" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Awgrym" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Rhybudd" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Chwilio" @@ -3343,34 +3402,22 @@ msgstr "Pwnc nesaf" msgid "next chapter" msgstr "pennod nesaf" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Trwoch JavaScript ymlaen i alluogi'r chwilio." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "chwilio" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Canlyniadau chwilio" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn siŵr fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategorïau." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Chwilio cyflym" @@ -3407,20 +3454,30 @@ msgstr "Newidiadau i'r C-API" msgid "Other changes" msgstr "Newidiadau arall" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Canlyniadau chwilio" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn siŵr fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategorïau." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Yn chwilio" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Paratoi chwilio..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", yn " @@ -3441,30 +3498,30 @@ msgstr "Ehangu'r bar ochr" msgid "Contents" msgstr "Cynnwys" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Troednodiadau" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[delwedd: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[delwedd]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 55497d699c822f50663a89c0f7a4a44339be125f..613650fea60bdf185b9d9e0416c526dd08f1bd62 100644 GIT binary patch delta 3415 zcmYM#eUOb+9Ki9z?zL;zdReQIx3#Tyy>IqPlWf^AY*VBRs-a{h@)D*oV{((4O4MXy zrlGAVEq_p3J9<-1wIzm95g{U@!I)BvVx+!b_sq0&-OqE*ea<<*-|w8~abn`}38{nm znJWT+-|(*^|CTnh_5a_679r%({09@5OQQ(eU~^2O{T0|2hhQ5V7u(bDGTIBVHLk#x zScionq{2on9IzX6@fbSs8Fb*qXgfwZK`*=<2jLYs28k`qL<3lW<@h{0Un3ge4$Q|N zundo32i6bmTZPb$j{fMvw?xNaHtmU6fm369EfQ0x$FBGZX5k@po@1EAi|BpjL~Y=M z`MMHEV;7u(*{mOyapA%%u@k)TnlBejP+tQqK?5Iv zZcSzEABk?s#MnPQpZa^_d^&V78o+Z%a-jx|cnzBAJ7^%A(EGo`O8g1?VHcvZw4>28 zG6xNG313#I7K?F1?Ek(k^*6#_>9FLd(TUHarA!p0BhEwH?UA)YSM>fQ@(Ba^GP6?SS*>!kN^~2wUJ1?1WCR4h{4z^uA58-5A?D z(17=#hxiaW??oimkj=AdyE8gZDe^R=LXry)*+_IN#-IyK!htvqlURqop!TDY|BYtS zs(pIm0<^y~8c2Wi{tEQIyQBA_TU?C=KL4}1V6N~a8euKE$Lr7=H(_Voj4p5#UEl(G zI1{9yZP7%!q7^7X0~m@XHVJ)m&WgV;#{}z#dM+&SyU~xMU!axPh6b_|FYO&V;SszF zPoamdfD>mTSE2XafS#SfXuxC8t(}0~a2BQ6wOuwT3 z-nR=a;a;>N7toSt@hBL09$tDp(FKyo`3qHO=9AEX=AxBb)FqXEgS|nA6TTPy9G&oM zw4{g8iO(a|4ta&?3Y4M~R-*Th!s~D{I^WCaW48_sXg!wW=V%4brnqomYaU`tRE(Cq z4_eX+9E4TqgioV^)F82hI&|D-I!{N+<)Q6`g?Kae#mVT|O1;R16RbwY zggUg;TVns$XvTZcO#h6(TR+Do(12Q@TUdmALeJP9iDo(u4QLLU@Z-ojsj!j@OS1|y z@NG1*jp*U}7|q}d^s(BHPH+y*IIlPzcoEtjf}WZ2Xa%RBdp`#acya7shB-d}FU5{E z=)(1Ar0=5xx1gErMHl`Bo#-qMMUS*wGz`1r6KJ4sqJeM6OOGouB%DGk*6wQ7Vf|3b zg_&N5?(vPWU4<@md+fg({qJ@PX5xG_<44i^mZO2Mj{WPg8ST$-JZ?c3E-FbU)E`q0 ztl+{^J3RidD7pkM9X2fE_d1+`dyrQ^7+RXn^giTRgcO>Su(IW8h9Rh zCi1&e|7X(a47*)ed9PKo+5;u0bnPj|RLE zoo5>w$WH8oN050^A)gkn@z52W=q7aFXmr3-G@$wD#0$|E(&E@(i&kn4I<6i`E^Nk@ zcp9x()4u7-E6EnTKkqd7af}ZMI8`|eBO=QoXS2%Ch><8~}_%XjRCokE%EZO^- sWMRMZ>-!C8Sl6k#Nk+0ySwrhChY~rBb#v!c7go=hS=~_9?Zce^0IBgpVE_OC delta 3544 zcmY+_eQZ|M9l-Gew6(OnjFurnU+$3dPHE*uKrxQ3VMRoyEOZzlNGn$0DeD{RA6{Rg zA_6YKE{ixrL?NIR8G&SMC|e`MD1^XFT-5qLSEE5f+=jZb@Ar95vPdq^=iGDe{hiIUM#{-aWsB~j1>k^E@xDRCO8I} zRG5q=G8av3J{q?Xtz-sG=wY-{+cE7=V^8eZhk2a8f~BGrB#r%#mr#Fi{4E^@+J&AULf7^fn$X{n$%kHa2ItV3{|8O1 zfNXrO4Cmu`ybA9^OZ_`^&m2XL@D@K-tgn>%kEQYNc%giFF5_Bs39dr}*P*3dg3h2J zo;M;ngmvisDRP8I`0>6S=s*e_n^n4U%Hz&HOC!=xekzB(qx$`tM)9}GI^z}&5P4^VKd3K@! zyYU)4gfs9w`oS7^MK1B5pc7e+4zx1%H=~K%kKX?ndf)D>tp5u%T;rFK)d+t?Vu#ac zpgwesFQE4okYxo9Ln~H;4zK{-oJ*oB(21-=E6|E2@N0Bp-8hEv!;yHyd*}n-q9yLf zj?u#CP_z;w&_pUQyL4#4YP=G!K{wq>bRrq_zDLo$vjt6fC#J6LUK&++1by%W0ShOMw&V;YV9=;nGK4e%KfE1XA5T}pZEABoO*3_8V;sXP!eV zcmQ4dqd3sN|EJ=Gx6zV*f|lxB?7xI=(qev0q!ztC2Mtt@&U87N$ZE7w8?g=_K$q+U zPQ?6ixx}a82*wXL(lEnDWUTNjw1mGw2il7T_y;t>WAXeAbf7b_|6O$ReujB?5v|C7 z(fdlr=i-&4{Zlb5pfR7uFR>mSco#aO!{~#rqPzI@*x!Fb?s_qL|8T6q@wgrv(C^1_ zbcsGfwo!KaPT)$)uoSB&QhyV8hz{3!Gn)A}bdzkyLhOznMoauEcH&vg$Ayz}m05zu zyA|D>x8p$EfS2LDXd(}yai5<={r$kaM2Dq*16|X1(AVh;G~l4gxg{z^10`6G6Yy$m zMZXLC(3$t36L}vU=o2*YFXMT?DY>_zD5YV*YILAkScLP?Pw~&t5-*GWcg6D#ET(@G zI)NwAx8?vk;0bguoJODj2#x!DH=R|YR&AawO1##Gv>~meekyOrhWsis;)iwTEz$X*WZ&ge=law?zZ-( tq-lMoDb#1yG-Z;up644^Ws+d{bP?5{SWawWUK%H diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 68cfd898f3c..3fbfa41d3a9 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi , 2021\n" "Language-Team: Danish (http://app.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,104 +41,104 @@ msgstr "Kildemappe og destinationsmappe kan ikke være identiske" msgid "Running Sphinx v%s" msgstr "Kører Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "færdig" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "ikke tilgængelig for indbyggede beskeder" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "fejlede: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "lykkedes" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "færdig med problemer" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "kompilering %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Ingen sådan konfigurationsværdi: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,290 +235,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Kildekode %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r blev ikke fundet, ignorerer." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Ukendt hændelsesnavn: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domænet %s er allerede registreret" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Rollen %r er allerede registreret til domæne %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser for %r er allerede registreret" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Kunne ikke importere udvidelse %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Udvidelsen %s brugt af dette projekt kræver mindst Sphinx v%s; den kan derfor ikke bygges med denne version." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -530,8 +572,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -580,7 +622,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -589,50 +631,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "læser kilder ..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "forbereder dokumenter" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -641,36 +683,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -678,470 +720,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Indbyggede" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modulniveau" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "konfigurationsværdien »epub_contributor« bør ikke være tom for EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Beskedkatalogerne er i %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "læser skabeloner ..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "skriver beskedkataloger ..." -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML-siden er i %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (i " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML-siderne er i %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "næste" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "kan ikke kopiere statisk fil %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "udgyldig js_file: %r, ignoreret" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon-filen %r findes ikke" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Udgave" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1156,15 +1198,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1223,8 +1265,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1256,7 +1298,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1264,249 +1308,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Indtast venligst noget tekst." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Indtast venligst enten »y« eller »n«." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Indtast venligt et filsuffiks, f.eks. ».rst« eller ».txt«" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Filen %s findes allerede, udelader." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "opret ikke makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "skabelonmappe for skabelonfiler" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1828,47 +1877,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Afsnitsforfatter: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Modulforfatter: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Kodeforfatter: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Forfatter: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1883,82 +1932,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametre" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Returnerer" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Returtype" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "medlem" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabel" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funktion" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "optæl" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "optælling" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "type" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Ny i version %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "Ændret i version %s" msgid "Deprecated since version %s" msgstr "Forældet siden version %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:71 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:82 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Template-parametre" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Kaster" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasse" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "koncept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Kaster" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Returnerer" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Returtype" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funktion" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasse" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variable" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktiv)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Rejser" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rolle)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktiv" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rolle" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametre" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "medlem" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabel" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "optæl" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "optælling" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "type" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Template-parametre" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "koncept" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "undtagelse" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (forældet)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktiv)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rolle)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktiv" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rolle" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variable" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Rejser" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "begreb i ordliste" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammatisk element" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "referenceetiket" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programtilvalg" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modulindeks" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søgeside" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2326,35 +2380,35 @@ msgstr "" msgid "extensions changed" msgstr "udvidelser ændret" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "kildemappe er ændret" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2378,39 +2432,39 @@ msgstr "" msgid "Symbols" msgstr "Symboler" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,7 +2474,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "overskriv eksisterende filer" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s er ikke en mappe" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2598,24 +2652,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kilde]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Det <> befinder sig i %s, linje %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "oprindeligt punkt" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dok]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modulkode" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Kildekode for %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Oversigt: modulkode" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Alle moduler, der er kode tilgængelig for

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,25 +3055,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Nøgleordsargumenter" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Eksempler" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Andre parametre" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Referencer" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Vær opmærksom" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Forsigtig" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Fejl" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Fif" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Vigtigt" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Bemærk" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Advarsel" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Søg" @@ -3345,34 +3404,22 @@ msgstr "Næste emne" msgid "next chapter" msgstr "næste kapitel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Aktivér venligst JavaScript for at aktivere\n søgefunktionalitet." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Bemærk: Hvis du søger efter flere ord, vises kun resultater der indeholder alle ordene." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "søg" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Søgeresultater" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Din søgning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Hurtig søgning" @@ -3409,20 +3456,30 @@ msgstr "Ændringer i C-API" msgid "Other changes" msgstr "Andre ændringer" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Søgeresultater" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Din søgning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Søger" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Forbereder søgning..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", i" @@ -3443,30 +3500,30 @@ msgstr "Udfold sidebjælke" msgid "Contents" msgstr "Indhold" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3617,27 +3674,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3654,13 +3711,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fodnoter" @@ -3679,20 +3736,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[billede: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[billede]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index e06ab48ae33c5c6ba708e94ad43b34759e273914..5b9cb883dbe3389b61db5c4efade8407c346368b 100644 GIT binary patch delta 2903 zcmYM#3rv<(7{KwP0wO4)c)x)Of{=oMqoT}9rdiYsoyNK^yP2!a*(T+_(qdh<@&Y-# zr(>(xyx}EHt<9zu&C*cTrYSm`8!flAR%>GaKb$T0`Tfp0@B2RIInO!o=NHvm?@j#D zKdB+`w}pQr_*b87@BhEv=^^x?+XuZg9DCvD*e}8?`V+Aq&WQc_IEelt%)}L#fom}b zHz4;X!a*8*!U?_%+=f2bjy~AEcL;+q3x{A4@(H)`<-~Ka3>Ttt)}x6wVt?F(C3pab z<0Tx3>8z?3^M}!$4FY2-7bf9koE-bhkx!`OYc$qlPuztDI)Hpa3tuLD4u|1o%*G6s zZQKdy0xK{Dr(zoOhgmettQyVyS#+gKkxzJwFDLu}4bX^IXbU>=A+!=L*c~s%emf@7 zzlJ`S)VC{s2AcQ)OxP%-VSp*<3g;r9@H}5>ScgT59gZHy0{W-X z1X3u=08B>{&cV)#WKw?t)DLxEWo@-Dtc=aXvnSCh|>!Mh_azXsLcc_qGLnpdAhTCz`-jd;>FxYJl}4?CiFC#;LB)$y4YV8Z9psa zF7gSDe0hlXqWAxVUO$b-yND!~2-j$MC{j5HItWcD7mKkFO{@m5!za*{yn){LDO!om z(VfwKXhja9i8rHhenijGY0U8b??yV_kcpORAX@5Cn1{va*_el(jmMCK9bQ78TZJaj zfJ5>9*x!Ygct5(ZZ_!G$;yP?o-~VO&ypc@kN4*S~k0x?G9_hvp5*nz3=&m@8Ul*@u zqWz)BE{1HRn4v88XCZTh`_aR=1YO9hn2Yt8aHV@_xHsQLPoR5$7ESCbW@8r1Cznu$ zuIMi0Jcb&qz{O~yjc8)qkVnJrc>Q?nrxDz^c_XO5C8=b>_BpbG)6C6bo z{1pxGJC4V{(UOlH)wKnc=<9qBdKRkD=N3noqW3RHw_r_zMj?&e=!EBR9Cn}+7f^Rk z?G$v2s?d@zKo8-fIQ~MkE{?CpNnHN~O}G_Js11GoUo>7KBd2TPq3Dg1@D98cec*NU zjBG?R-Vyy7-I5M8!A$CHz>(;R3()ZrH0~|v*_nx+jfatnC&J@#U^#j^S9VEp2TG0tlp{Mpd znt2BrFqK~o_bwCP#ys@?ooM3w(8QXfC*$=tbmEIhsBi^6bAu^oU*-=vGz?UN2CBeH zyd86J1@cVTh)H-DP3(I#&`ETHGiUhpyRo5yf8WuP3#6N#@S=3zpq^_13s`C z4X_T)^dl_A?P!7*kZlfEVt-J6*K>K8!gvw#;)GJ{To`&LYS4+FjQv{tivDZ)+587V zV^%@e``>$9*ZVsL4Upe7F1HLsKy7efZ WP|`GW*gMH%Ob~ZwrJBW z*-X5(X_iX0B2jw5mgF+ZMH6w$tt@0_+SYPZ_BzYHzkAOnyWY<^=Xsw0`Jewe&$W9+ z?@IshB-b9p-%q~loQfsL$5ip9iML`NK8K2P9F=H4PQn4q z!C{<^v8-kaW@0q+o8n-Dz!=4aQoI+-ZGRu~F`azfj_=}FJdX-AjC{;>zLan{%bbP@ z=*DbR+(%FgT#b=ff#aCpY@(see5lNKp;o#F`IvY3(u5~a0s2v;9Yjrh1yzab7>-e~ zp?(ay=(|zRrJ>?yqY}?YzZ%PED8L5P3LB7*>ELS|b|Td?N9}kYs?=xf_&2EguApb|ZWN@zPOU;rP$gQx_rAd58r;2jvvY-yN< zy1oLH=tfkDeW=Q{pc3A0`!Ar*Mn^pL*Nty7pp3fhjs2*JhEQ8Gf-2z+RAP}lO%5g= zm3S&@f=txeDL_r!WUsd(kDBLEiN1u2*X5_Nn#KpHL}Ix*1`|=GnugkIH|l{qQGxGA zC9ni{;2PBPmr;rQgu3rf+rMf1F|1MvCtwQtlW8b$5$eIks6+A?s+47zkCmw3hX5*} z_fQFbiF$s>_AgjRP?h=t`Iu3@bOs{WU)?_gx$ZX^G!!romDw`XnOJG9KqXX%^RN+> z*kMe?W2lvUg}U!IR3-klD!BS%Q5BhpN<0zA>;0cjLx(8?wdW7p8`h!{+JGvx7iVG% z>b?W0vvCAD@MZuN_yTIe5lq6Xwjai?m?|8FTHs`i*887IV=vCNeu^Y-)=@77tVbo% zjHknlc?K0|DZesWaVhHhTHCKew%a^`Dt)W%??!SlucHoQANsYDvozB1B5I{BmZiO$ zVs%h^pNUFr3A(Wy$;GsyRlmP|af;t>+ zsJ&{p25=Gm1E`f=My=pyOvjscJe`9;@k|Z|6Se(v)DK$|Y6}CXE$U05{+h7g4h*6u zIFBmTMLYfnlDzpBH9^vhP=dLr=kLNST!bq5R@4@>p@>kz6^-`eZfZ~^`QQ1kfnozM!_ zqcZfO0zQkHpaYf2tEiQpz@_*(>i&4@sxy;`TEN}b3e?1HsDuNkc!yCH=njqhO)m`v z?nfP_LDXUS5w!)^Y(IjRU57OWH9ifshqy2iys9gvIg}Uu18H+g*vpGQHi&q0=A>JGJw0V3w8fJltqazMkTh= zT8@#-Z@e@#@fKumvki3!UqS8Z8>m3Ns6Zd%LOg>Gj^ju(m&rsIK8i|g6)H|SDtS~2+le>)95(1|KpH|q5{g$nRBYT`?%gnq#Y44cKt$FZoD7b7{DGSr!Q8g<`Z zjKqDYN*%J}Z_ncW*M(yY$m6KYPU1W~huZ7#^iZHAQ~)_f-$DgA(i0ss;EHW_ zytPh~r{3qSt954jb`QlCBs#vv%1usXUF}A1wbN8l)95MUQcpx&ThxTStenEE+yW;z zzi2^WPhe_A*qHg*xji?MIwImcjS5zFD_Fbxp*bZUZ>`7i)zwsP@;D{In2q%n4NT|b Uim$;_Q`1;m9h~62`|;@i0Y>>QcK`qY diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 5909ab36ae6..278202839b6 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2018\n" "Language-Team: German (http://app.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,104 +41,104 @@ msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" msgid "Running Sphinx v%s" msgstr "Sphinx v%s in Verwendung" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "erledigt" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Keine solche Konfigurationseinstellung: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,290 +235,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Event %r bereits verfügbar" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Unbekannter Event name: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments Lexer Name %r ist unbekannt" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Ursprüngliche Ausnahme:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -530,8 +572,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -580,7 +622,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -589,50 +631,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -641,36 +683,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -678,470 +720,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modulebene" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "Index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "weiter" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "zurück" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1156,15 +1198,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1223,8 +1265,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1256,7 +1298,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1264,249 +1308,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1828,47 +1877,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor des Abschnitts: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor des Moduls: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor des Quellcode: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1883,82 +1932,10 @@ msgstr "" msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parameter" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Rückgabe" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Rückgabetyp" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "Member" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "Variable" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "Funktion" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "Makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "Aufzählung" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "Enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "Typ" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Neu in Version %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "Geändert in Version %s" msgid "Deprecated since version %s" msgstr "Veraltet ab Version %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:71 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:82 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Template Parameter" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Wirft" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "Klasse" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (Klasse)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Parameter" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Wirft" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Rückgabe" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Rückgabetyp" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "Funktion" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "Klasse" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "Attribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "Modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variablen" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (Direktive)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Verursacht" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (Rolle)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "Direktive" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "Rolle" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parameter" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "Member" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "Variable" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "Makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "Aufzählung" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "Enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "Typ" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Template Parameter" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "Exception" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (veraltet)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (Direktive)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (Rolle)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "Direktive" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "Rolle" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variablen" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Verursacht" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "Umgebungsvariable; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "Glossareintrag" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "Grammatik-Token" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "Referenz-Label" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "Umgebungsvariable" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "Programmoption" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Suche" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2326,35 +2380,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2378,39 +2432,39 @@ msgstr "" msgid "Symbols" msgstr "Sonderzeichen" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,7 +2474,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2598,24 +2652,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[Diagramm: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[Diagramm]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[Quellcode]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Zu tun" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Der <> steht in %s, Zeile %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "ursprüngliche Eintrag" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[Doku]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modul-Quellcode" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Quellcode für %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Überblick: Modul-Quellcode" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,25 +3055,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Achtung" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Vorsicht" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Gefahr" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Fehler" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Hinweis" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Wichtig" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Bemerkung" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Siehe auch" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tipp" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Warnung" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "Inhaltsverzeichnis" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Suche" @@ -3345,34 +3404,22 @@ msgstr "Nächstes Thema" msgid "next chapter" msgstr "nächstes Kapitel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "suchen" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Suchergebnisse" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Schnellsuche" @@ -3409,20 +3456,30 @@ msgstr "C API-Änderungen" msgid "Other changes" msgstr "Andere Änderungen" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Suchergebnisse" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Suchen" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Suche wird vorbereitet..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", in " @@ -3443,30 +3500,30 @@ msgstr "Seitenleiste ausklappen" msgid "Contents" msgstr "Inhalt" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3617,27 +3674,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3654,13 +3711,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fußnoten" @@ -3679,20 +3736,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[Bild: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[Bild]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo index c6e42fd10fa33fe9ab7797ad856d741e63527fec..14c3e253a0c32474042d595ac325eb3a1d152799 100644 GIT binary patch delta 30 lcmey#{F8Y?Gp~uRfr+l6iGq=_m67?z2`P-MCVB>33;>as2j2hy delta 30 lcmey#{F8Y?Gq16(frYN2xq_jIm8r$X2`P-MMtX)^3;>cV2j~C* diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po index a9c7b143138..b105edba9a2 100644 --- a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German (Germany) (http://app.transifex.com/sphinx-doc/sphinx-1/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 97120ed21937adb04f1a2da2b6a10a8b1bf24625..465cda1ee1bd092ffee4958de332eeee43824fd4 100644 GIT binary patch delta 9658 zcmYM(33yG{-pBE^lOTkMkc3PkLL`!iNDLt&icmGx7*Rv3DQyhZsG;h_HI@`@%pFm5 z(w3xxn%Y#WI#5;KTUA;ws#;^IsqOpyowc9m?Q@^|S^u@q*?X=3`mePQUi#Co__Uwr zr(nP3hX3yOF(wiVgBAV%f4kz0ndca@8~>oYOH*UI5~sx*Gl_U=Groftu@(+VFs2F? zU?LV`7OuoL_&s*VT3pOF#$yK2h^1o%R>vLakCoU2ze3&c8rH>ISO;r1Hzok1QT>S+ ziXAZs2Vx)=U<^)1eQyN@;G0;T=bLgG`oJFSkEbvPTP4{WPIfIp-FQ8QVL8^vudpVb zMGfQ{Mqt%sV@R5b#T}T7t(LDnl1g1B_*zWLFQ3#x%yDZdig! z=`zg3ZK#Y~#Tcx^bd`}b48;zpRQ5+bcoh2JWV{cjy8XM*kN7ZBM&^6eeLQ{)OC5oz znP*`L-shT!%EScp&dl`y=F|TpYAM>bvkpSdxCrxb9%@3TQ5p7OR;->0MwY~5y3)`{ z`=VyL498#%U0`w z-H>uJOR*u(H~ZDVvlxa|vaM05lxLudsR!zTLr?=6k2-ifsLYgLFuv@@@1tsKFUH{+ z)cyQB+3!W7N82NThHjXOnn?~S6Az$LJ;04eVngCFs0S@Teg7p?rq-c8Ux6BMB}U*8 zRIyz`-TxNqdA>R1U#YB@V@z|5LfxPTk__nQTH8*O#aPo6~!Zd^UrZl?rnOgtCk@hvz0){SqV1`yTV zzE-o5t!$n}rT9Y}jeBu0#!+!k;|$bNT}NNMgMR4wheiwy-}~)>5{Fu|_NW;S#_Bj7 ztKl51f+eV3@*-+2_o9mPFzP|)a3TJI`rOo>_P!fX*FQ#<+G7sT(2bAU4)dcM|BC+f zUqPktHZH>M57_;F6w`=(df9^~163>iQ3EPK&KxrZ!*L60B41%mJcdcy|7U3EMnOD< z?3(*fMYRYuqt{Vi+=g1SeHex3P}|P0kF_2K5XWItOhwhkU~GUhP~TgD8c;cU_x~Xp zIdoh`6-`SjFBwZP8h2tO{uec{o2VKH=x1Ll$*3hMK+UWWmC`rc+# z22Q)z@1QafHjw<+r;#zx&a^iM6OTikgvHnlS0SgU`51%nU#yKmgX}M&7*sX)Lp^8^ zw!n#~RKJdi_z`Mp&Y_mH)?n6OGYw;}Xhi)m1}9)WT#8zX4H$;sVJKe2mgqCY-Z&jY zh)1A`b~2{oOwW#!nJrF)A2b9L^Iukx z)*v2%%FyFjA3dlCt-=QQDe7SR36<)9ur2xzH--&oa&WTt{}LKXO_dRL?ZZ$9L?VV` zOH}F~K<$#zr~zz5&2S59z@# zphqK}MnfrDg-!8&)J%@K@h$91-0(4bz&wiDPLr?=zJjs%J*voVp=RD_j2%E0D$YlJ zZVFbxHDk!X*7kKeR7~5kJ${WL_9)UNr&L&J~83DovDjWO6@oSktds(2nkePJppQ!k)uU?ckDPSnX* ziJHJstc7<_5B48#2OfqsiMyZ%=;=p8shEz5xDR!*T|}*I)C4=zfv6cii8`WZpo(k> zY9Jfjcn8)dK7{(*DQt?@P)prlqMdL{OxONzO+zz!0yXkt)Y@-EHiFrVT8cVP+WzJk zK%9p0*by_a0Ap}1cEV3kHQ_tSR(}9$K+RACYLAK9{|~zz&*NY&lw(J%`IOB-PgE*r zV|9E1lkg=}#tvXAUPo=WxFS1|&bX3zjH`}2Wo#94sG9dMLi<19X?q~V<8b2sn1)+1 z1J9ziX~YzpiA+?@3_xAaLlxr^tb*@gbKHW-c+$NdFxBp!c-J223E=}zxE-@Flz2UQ ziwd>9D&6=z1`}UF4aj$zeS5~Dw(T%Xz*VT!e}ek_L9CA_QO~=HI*@8kC;$3D!gO04 z9q>zsnc*HE)^i4bcpyGClfon3TFk@weB5mQasfl;*zcLS_JQ@W6a6vBSIj76tmZU6 zgL(5PT>Ktm@xl4zUo)LN-@b%q;t=AcSOqVjGH@9iV%-I{_*!8z;%wB~kHIipjdgGf zswgW_OY@K0AO4)(9Z8r=e+LhZ{WRvFYT^EccFhi=itHBZ!A%y~ms3|%Z4{v%vCs7$JcKhGJQN%kiNOO)TwH-+~k_(G*FkZ&D zFn5_fkglTEtnqTYMBPwp`x-uu^;g&j&c-IhFQR6?9oyi)*a+LKw3*Grbme>=jr+Oq z5r$&bRW>zI_z-ct>s;(bd$sxChoF9*WwA6EGWJ!DyD| zBsSBU-+RfP$xU7+oy2L#qI$$t$Rn`mh5wxZVN7G~nmwfrR^F2@8si*2#?I-BC|m_|Gv{c$b6 zhi{`El(*hyVg>dm-h{z;7bjuh8}9y}^@d&BW!Q!b6{r+nMm>1y20Np5c!c;fY>KNl z+5zoDW#Be`jj@~TIdBD=5Vw5OnCEdY*21%>%wK<#|4*Uu6qUxa%sMQ_+_!D99KgoJ zzhM*xzT(rF_e?*lJW3&n-ZpUV<$AvwpZS{ zkEkV?veQnW#z%Ikdg2iJU&oF--`sXDwB2Q^^mz<&c<64sy^{9WA0#6%i_gD`+4v*2 z$H=|5>WAPG;->p-5pP2Z-L(0bV;fK7aD4I;TSJG@^F18_m3D+bV;|z!PwlVTNvH=@ zU^l#u|G~`t_AixoV}0WE&$v1E!Y?u9bNiaUgIep02ka8v!%*VrFYK@Gj4#N4Djiel zP|>`FTEi2lTBv@|{`!r^XySIL84SVZSb?qZ45}u=czOz%OT>1>d0*Lss1)_!!>Ie7 zM-A-WSL9z`to5~B+Ze1t+yd8OCXVBVC$W&Y=ONOE+p!}i9=5eG7IjW6!Rc6rtuf_W z`=Ccr*Pq6IxCS4=-#s)`Bz=$AwLXKH#G&8WpGf_1BJp?}ho?}P=ylXuh{?o@@G0DZ z<1v|aRi<9XJiLp8ao{mKkG!4jB52-7WpG6LBeK;!(`f{;z$;o>aZC z1s5ivQnwB@Qs;kds-Hn+VhxVQ?HGhnXYD^=q~IgOlTb@?3{qrFL(s~&~x1$6mzf!@#m=2 z9>JDq{tWF?yG@_N_lbAmIxM_xPs-YNY!Uaw6#6T1DPBVjVD?>m-UQ#XZ_g$k8vVJ@ z6*c13*cji&iTDj_K-quWs`X%d;+;4dZ=!0U@E<$#GVDq0^RN9;+Z$ICuSOMZE8}>J zdKIoD_5?eQ_ova@IFF9DK92V#vKI#v_aR@wxCtY1C%%lwaS|5!Io{t7=TXI#T*dMJ z1>*p0Mf@C2z}*s1}^+p;fG>>e|fhCa9kbMPBfwFXslyg#9y!Y0HwP}?%X-|?Pk z)3F!vQPlTht2^E!c{Hj<)?*9&7L_5VhU0w)bjNh!5!h7we;JKpIzB=bS%(0}yPa}T zH82Q=VhL*ho=0WoPYlEdYC2{k=3^oH)UpGffV#dM8{!+Nn)wuGU{N4T!Sl^k8r|^; z&S6z`Ip*Uz?17#6F)$2EFc&YN&ViP7Y)W@xAL5gkhsnVqXHdlxUeEFVA+iA55LciEbQ!f2V=qeHhum-f*PrbkqZvVKnZ-I6Q$$u?e?D z7=v2#TvX95MlJ0Y)P#3oHikra?Ai{DuvPv6p5j6!w#W66j`t4?r!buO4^+|lM>*b; zaS)Co{vBswZ~kDX-EtT^;2BKBn1+t`Xzqy*5U<5fc*#TKa~dsT9Pi8HFC0mn-^iUI z>RdR1qw#mwezA`C-v_o~8vT)t?Tq{2gARY3$NTX@oV`zaQ^)(Gv_H1x^OsPW@WjX4 zsw~C=I#Qe28LdQp@HVRG(h_V6r=t#@x!4Zxy8Ri6cF8)S4z4+D^9D}p?;iv8P8|nnT zjVkJ>7Pe*vpo)10>VD;zq_@m>Ey~t3=@C|XqeFUG=d9O)${O_^=agRU^G@mCeIv@+ z^lKPVwxDpmQ}&+Q|y8_&n8lqe{ia)=sML{{eK^ Br9%J! delta 11664 zcmZwN30zdyy}htiVL7@;s)+}#C;dFE&~iY3NwU7)Y^5!M_ujMo&pCHyv~#a} zZT!y5`9+}D>l*(_ucm2@@$*25e)-Rv%{A@!x~6TyZ>Vk-t!aIT17kETpEx~M({k`M z*2R>Tn&yptk^gD~`J)RKV+Y)a{qP&?rfE*CeJf3iqGATt#`RbWw(v!20+% z48Z$X2cMhuK5?2BOdNs!*be=$FB&)s<+&Ls&n?E<^slWoZ`h0@xNsDEVEuU2;3(4^ zl!oVH2(HCYEJa`ZGs*xjU>M%QW>_sj(+*%Xw!tq^1`w2}X*KCzYeGS07>lhj(bR%3 z5xY=U810cBGK(YmbtAe6n7g#ow-Yv6kH!L2Bn`=jZJw&Z^@ z6<<+N4|}&$OED6A6OY4wxCIB`9h5b1OP*zhgHQ%K3b~|B#QL}vCDreu45ShzLnl!N zSdCGO&7BmQQs{@$U=B)33$Y`WgC=^dtfyjg}pG{tbY@| zi1#4-Puqvmj`Qzk#RHU07@n%utf^@#N+yP&XJ)4F;&|#0qbx-zqZQku%y=Y@#cY%b z9Ye|R4P+Z=kC7#DYRx;TktU(cv=HsM7W-iJ&gyujp)@cW<@jWq_4&w2)0`NCWhiTX z8D$_}n(-6!`g07WKAN|ZznuT>6eKmna2$?C$wWEIl2jtE1nnp`!22khR_EwQ>H|^s zfPq06i!y+2*aG`wPkb3|xECb@5#2aB^sf!0!2Z)VVkDk3eTX5%{@s-^C`-^CWpj;0 z=`a&zK(kO@L`zXJRf2)I(~J+I?6p(a3?HCV8m!+#Js6F0T-u^E*a>AO15q+D1|{{A z%y>G=fD2GMa-lr`4oarVQ11T-Wx#F>!>cHp?`aS6FCA1TKhmKeN-86<6~>@6FcQg{ zHW{U(Ehsa2A7za%qYUs4O2-dT+VSQH$aO!Ii5e)IvMtI|uju7epHg?JXhTHRO7zAOlvA<^WhqagY|bkv9X-OO z_#?`F^9Op`b!vMk$PH((4qilQ_?j8tHsdE)i~4_|q|j@SroDzEu$$bE@fgX)WE_Oy zI2UElY(^PaIr7fZKEg(F{(qt%GYT1^PC*llBThhRXgp@%3S@P(M<|;tl?@>?9E|dO z7RnOZaWbw&8Nl}#f%S)}W0`E)6YJ2wHk?8WoQSe{7GgvE14;uQVF5qN#+oD4K%1d#(p2OvuZ>4pvbE^+rLcj5q>q6$O1uL*;&o&nYGI>PO0!Thv>B7}mTAM$>iiGHw$zWuU|cnt{L4spniU_TJa`2q z1Ac5-xgLX(i9RUr?o5=K&cQ(3h#|NOWAGE~g5RP)#;2>)cf};)!RUp~bn-79EubP1 zH>0H5jVbs8UgOn_g0UWPH z?15`g25<=@@EXcyevb0_qxIu(%Y#c%mf&raHM@+mo4-L`5n8)UwNwjGQn?%@bDOX( zo-zFlyAa>O#@K@QZ#4Eo$>?;H_sd#rLjT%v3No^bc#CX{ZN){Fv>(SP}(U+XDo#q6l6F0PF1@)3T5QoF%c)A zEYWh5f$l`f&?ndeuVNGQvZ=TQ_8}gG@_uol?E0j?y@JxwI@7}#M|>S+iR;?cdm`3J zK{7A~Wgv6W2mg%Hz&Z2!cV-;!P_NP+D9;T=IZm@s2D}F4)Rdrs=Wr-KLdi(aJhiv1 zD9<_PQW!#EJxWUNqHLDuSPKJRRbt7D4Du|Eip7- zWv~~@9wTSM!By8%I52jvL{|f$-ok9iz`qj z^e2>o{|#l2JV#EZ=3OXD#roSQ$c6b>2bW?rzJVR_Lp1OycE?7%g=F)LM>!>#C!jxu*0~zT zg!lsSo>$pW#Pb*MV}cvM|GlPtjkgx52hT579p1(6)IUO+(2|$%n*qy_Noy^avTXPc zMq$&})WrH?0Pzqfg>(uQ^u~iInK*`#_;;*>Udz<6^2a3NRFoM^Luu$$?1*bI46Drg zdsvV78NP&dm-BAHQ7C)Q8MZ>L-A0U~;v`DP|G)$cUa7v4^+D-qCWhlu?2PZ?P`rti zWUl=xek%|^SZ(f=HEIIGP&WAl9EVeItc>9!3P-4D>{4s@8FECmZ?GL&)@s^*EJ2z1 z;MaK=o!AF&V*`wTL%ooCqGWIwN_`Ppa4GuZeKUTBlO+d}I7?%=a17tW&~@rf^%2UN zeTT9{A?wxJ=HWEryXc1_H>l&4i8Avg*a6RB6RfpSWws@@B_4zQaTx~78vK=lq~-xm zz#mOVzo|ag_aggCtF}pfuD^yoi1%PLK1P{Yqs?l@tx%3*ckG6Cj9_VYVGQxvE$UVM z4|M*Hit1ZAIyes(V$fUa7;Z#K;U^f1S8zUlhtkl@ZR)TUI5l#Q{(`!NNtV{>fyj@pdfuoiJX?!w=qY{r&5 zRVJq32;!L-h-WY#ubJ`ich%Bb-zERDR*R`vjK@$qPGcj;j0*4qmS78<_6Ief)fhv3 z3eVyb?2gC(s0LcCl$RKB4A#Z{NLSj&D5t7-8NZ^iz)4{)g;1u^1lOZOH^Y6z?NFB1dC$C{z0Vg+Dgsa% zTw?kjN&_cR9{37nseUx$HWlh`GWy{f>NnwKOxnwL0<1}I$FUgYdg^}l@p}f-Bq>Ri zYBS8n0o-s5lhF4AHIOdYl6V4!;9?BIt>*RpD0}0wdHpABP2AvsIxT%Mk$5^vhBu-= z9zjDE#cfu6i!wv)pgLATC~+6;j>FA*7X}g^LId3>4S$RA7;s2E-wkEpQ?MScK^f>a zl!<(b6J%3drx1o+5A#yMaVQVo#&H;UL|xBCKjI}Q4Xwif{1Bt@oLT=PZXk~MP^J6; zb|)TqR4vtVOeem9p1=R^bWB~Cjmx=Eh5kCDJFbqK{Ui0wilP6Z|e7ACwz*1 zvE4~N>2MCtz@IS`XPjbCxDroe9)CQ<&S%tG$1^%vqOKT>ld&fjpLMFuc906$H1{wb z!`*7_2Vf(403-0XI1x8sD}0J=uz8i*6Js%f%;jJz^&8Kr7t>!*Iu1Oq+Kokj;;v2# zvYCdUA7-ErzKq*&4(8HeaYjO_2D=Soiiw8Quq`PV%%TVrn!yD#IygV)~XB}6W_r+^!^`p{|w9}ZvB}$zFSZ- zbRbcS1R6vGl^UNoqqwv z?N}`FP4y|c4W|*u+)^2FVFIz&ZB6?fwn2%@u^(Q?b{Km{owiBXnf|rC6uRLf?2fJP zs+8wr7veH(hW9WL{l8Y5ush1Yx1glF;XRd!6wD$Xjk3uOVJ|#`vef?f)shsVb2Js( zDEtPWqA!mAM!g_1aR~8Y%s}4<>KHjtX1*HZ@F#4AvEQl;jzT%EUtm*g{!nf1G#o{o zj&6y-vLBJ9Vt0zE>Ys z9q=&q!*DYC{X;E*1Eu2+Fb(~GApcSr_k;S9xC2v&Yy7CzsvGtsE<)+}11!b7r|Oqc z_&?S4DDLWB;Z83dVx6G<%#BY!r^;3T*WgU&ol)L6p>e_)L8v zxqXC{0e0N9T=SqtRLoK4tB$<*b&3MR7dGpM7$PdFZg)tp1*t=h69MV zVt+aR_bIHWqC*Ycvun?z?CSP4bUoG8p3@_tK;t92N&su(ify8}$bk7Sa z9p5A_!h8&@qkFz=E=1W|r?D+QM)~(=E!tQ2d{Y^ZQE~%D;{$Ah!FAln8T#Q(ls)hrj>DFLy65;V#4*HcQ11I0-@&JtgInvX0oQGyYfibL4Fy^2 zo+zo$K-oN>;~ZQTr0Q!2>z+5+e3adN2FK%b^qis)-SZyVfiF?7hpJ4Z;mgF^aWMup zRGHq~PFvqEolm#?WshW;q#APVQ=Ojw%qQcY+EhzPNY>y|f1fQd9t~VO%o^QW5 zP>x-jaNTokr=tuwl%GSfSQz0{Dc?+mtoc5a7tU2|h*6QMzB5iI&cYx(hq4E5;Q~xE zRKsq3g}7xCUE7H7VK3|xrP^C!x*eszBTfnt6mDWO^lGY>A{J%s(@^$C9?IsdM9&^T z$-qsNYgiBc+pAMzAl+)yFi>XxH3ga3GnBP#+(FmM@He;`eNuGK&*?W&j;nX7 zdIdK?+5IUfo5_KaffAJVs!%?jAEZ_sY?c;Muh_8JjTzSb0-M8bG%r}wxkIo~P?R~< z$aL7VZBvXHmYgDMN3K+~?YzyuOOCCe&~RiM1$ov?TedCJ$hPHJ3yeaCk#Ef?vgKqY z7->`Nj(lsDVaqn+ErzY&#l6-nmp&+=LLbyqcUp=H9R)?Xxt9D{#uTgFnr|sAFcR`< zTeWAi7h3b}mYkef2}aMNLSvSrDBmdHk4)>Nf}-qf+e{ zTV9?uD?!U}6izh?Eg3~Qmi$adPEoGCz_8e}jE=>&EZ3yLE7OfUOFlhVbBtmew+=S) z@*SDhf&!W?o@&jv8hMU_0$WCo)rj%T){>)=VMNL3qj)MO$0)EC@+8yG%qxn|bQIYO zV_i1~H*09km&&379?r66TZ(cDI~r39b8})Vst;)%mSii8&$DGtpJn7avaE4Nu_fPb zSTY>Ulo1)ZHafOXA*I=j!_J^8T1O)&IWBRX!uAqSK7hYAt1n$dwwV8lT0p3UP+Ro-@mc?`=5pWb6eMw`P8< z*KHG@loH>%gVDNe$95?dm9w+->d6VMD#&b&+L{S zk8%)89{TAaE_c=Fipr|>)%@K%sQuL`Tr)Q$zT6z848wC4X@7pz5*pYiJu`;V1jD_W z5gu}vy3RX;>;9h;>H6YnlPGlv-Ro#V#>R8y+|A6Zey_%pP%-4fYQ4U?R_bZ1l0T1D zz3Q@*hQzrKS1qf0RZZQ!N#=3D(|ZMN%_l+oxX2xId0?Td$IgcRW4J+XDkp7fpp`P^ z10-+Pi<3&vBOa?aJ-TRfb$0m&kaF5IsuuCkE*`3MmER2Y z_MBkX(2I>KvM)_aZM21+$e9|>tA_o>sg5&B<|XJsp_2X=4K0&2$lw`UNmVsHsIg}b zESH)LeH?I?y7$Y(+(%@!3|H9aQLdE>{VRj~^ziB>kNxzZaHdkm)Lv|kWi0+tPt1mo zDOpxWZ{+LQ>7Lg>r&!ObkN=N{WJ6T_`pG!8N$8p}k>sNWYkkOF$=r{c9qgiwO4)^; z0aq8^!pYPV-w$V{u| zvWY#JKl-beO67wFde^{OFLLAB`h8IIc~#4a53^fY@n7C8nrhKZz1$h}A9t#^ONldD zPpO<3t>=5!@|@4Z?3->!f@@aNDx1Nz>f5lA@cOzD5yw>35~xFbK#l-grHpaL_ja9s NQor)cI6boZ{{or43Mv2q diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 584579ab032..bed9e886e3f 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi , 2021\n" "Language-Team: Greek (http://app.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -40,104 +40,104 @@ msgstr "Ο κατάλογος πηγής και ο κατάλογος προορ msgid "Running Sphinx v%s" msgstr "Εκτέλεση Sphinx έκδοση %s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s και επομένως δεν είναι δυνατή η μεταγλωτισση με αυτή την έκδοση." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "δημιουργία καταλόγου εξόδου" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "κατά τον καθορισμό της επέκτασης %s" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχοντα ορισμό στο conf.py δεν αποτελεί καλέσιμο. Παρακαλείσθε να τροποποιήσετε τον ορισμό ώστε να το κάνετε μία καλέσιμη συνάρτηση. Αυτό απαιτείται προκειμένου το conf.py να συμπεριφέρεται ως μία επέκταση Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,70 +158,75 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης καταλόγου %r, θα αγνοηθεί (χρησιμοποιήστε το %r για να καθορίσετε τα επιμέρους στοιχεία)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ανέγκυρος αριθμός %r για τιμή παραμετροποίησης %r, θα αγνοηθεί" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης %r με τύπο ο οποίος δεν υποστηρίζεται, θα αγνοηθεί" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Δεν υπάρχει τέτοια τιμή παραμετροποίησης: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη." -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,291 +234,328 @@ msgid "" "%s" msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Η τιμή παραμτετροποίησης 'source_suffix' αναμένει στοιχειοσειρά, στοιχειοσειρά καταλόγου, ή λεξικό. Αλλά παραδόθηκε %r." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Τομέας %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Εικ. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Το συμβάν %r υπάρχει ήδη" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Άγνωστο όνομα συμβάντος: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "Η επέκταση %s απαιτείται από τις ρυθμίσεις needs_extensions, αλλά δεν είναι φορτωμένη." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Το έργο χρειάζεται την επέκταση %s τουλάχιστον στην έκδοση %s και επομένως δεν είναι δυνατή η μεταγλώττιση με τη φορτωμένη έκδοση (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Το όνομα %r δεν είναι γνωστό" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Η κλάση μεταγλώττισης %s δεν έχει χαρακτηριστικό \"name\" " -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Ο μεταγλωττιστής %r υφίσταται ήδη (στο δομοστοιχείο %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Το όνομα μεταγλωττιστή %s δεν είναι καταχωρημένο ή διαθέσιμο δια μέσου του σημείου εισαγωγής" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Το όνομα μεταγλωττιστή %sδεν είναι καταχορημένο" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "ο τομέας %s είναι ήδη καταχωρημένος" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "ο τομέας %s δεν έχει καταχωρηθεί ακόμη" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Η οδηγία %r είναι ήδη καταχωρημένη στον τομέα %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Ο ρόλος %r είναι ήδη καταχωρημένος στον τομέα %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Ο δείκτης %r είναι ήδη καταχωρημένος στον τομέα %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "Το object_type %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "Το crossref_type %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "το source_suffix %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "το source_parser για το %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Ο αναλυτής πηγής για το %s δεν είναι καταχωρημένος" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Ο μεταφραστής για το %r υφίσταται ήδη" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "το kwargs για το add_node() πρέπει να είναι μία (visit, depart) συνάρτηση πλειάδας: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "το enumerable_node %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "η επέκταση %r συγχωνεύθηκε ήδη με το Sphinx από την έκδοση %s; η επέκταση αυτή θα αγνοηθεί." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Αρχική εξαίρεση:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Δεν ήταν δυνατή η εισαγωγή της επέκτασης %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "η επέκταση %r δεν έχει συνάρτηση setup(); αποτελεί δομοστοιχείο επέκτασης του Sphinx;" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Η επέκταση %s η οποία χρησιμοποιείται από αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s: επομένως δεν είναι δυνατή η μεταγλώττιση με αυτή την έκδοση." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "η επέκταση %r επιστρέφει ένα μη υποστηριζόμενο αντικείμενο από τη συνάρτησή της setup(): θα έπρεπε να επιστρέφει None ή έναν κατάλογο μεταδεδομένων" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "το θέμα %r δεν έχει ρύθμιση \"theme\"" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "το θέμα %r δεν έχει ρύθμιση \"inherit\"" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "δεν βρέθηκε θέμα με το όνομα %r, το οποίο κληρονομήθηκε από το %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "η ρύθμιση %s.%s δεν εμφανίζεται από τις παραμετροποιήσεις θέματος που αναζητήθηκαν" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "δόθηκε μη υποστηριζόμενη επιλογή θέματος %r" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "το αρχείο %r στο μονοπάτι θέματος δεν αποτελεί ένα έγκυρο zipfile ή δεν περιλαμβάνει ένα θέμα" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "δεν βρέθηκε θέμα με όνομα %r (απουσιάζει το theme.conf;)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -529,8 +571,8 @@ msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για το msgid "building [mo]: " msgstr "μεταγλώττιση [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "εγγραφή εξόδου..." @@ -579,7 +621,7 @@ msgstr "τα αρχεία πηγής %d που δόθηκαν στη γραμμ msgid "targets for %d source files that are out of date" msgstr "στόχοι για τα αρχεία πηγής %d τα οποία είναι ξεπερασμένα" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "μεταγλώττιση [%s]:" @@ -588,50 +630,50 @@ msgstr "μεταγλώττιση [%s]:" msgid "looking for now-outdated files... " msgstr "αναζήτηση για νεοξεπερασμένα αρχεία..." -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "βρέθηκε %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "δεν βρέθηκε κανένα" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "Περιβάλλον μετατροπής αντικειμένων Python σε ροή bytes" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "έλεγχος συνοχής" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "κανένας στόχος δεν είναι ξεπερασμένος." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "αναβάθμιση περιβάλλοντος:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s προστέθηκε, %s άλλαξε, %s απομακρύνθηκε" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "ανάγνωση πηγών..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "docname προς εγγραφή: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "προετοιμασία κειμένων" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -640,36 +682,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "αντιγραφή εικόνων..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή αρχείου εικόνας %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "δεν είναι δυνατή η εγγραφή αρχείου %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Το pillow δεν βρέθηκε - αντιγραφή αρχείων εικόνας" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -677,470 +719,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "άγνωστο mimetype για %s, θα ανγοηθεί" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "εγγραφή %s αρχείου..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Το αρχείο επισκόπησης είναι σε %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "καμία αλλαγή στην έκδοση %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "εγγραφή αρχείου σύνοψης" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Ενσωματωμένες λειτουργίες" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Επίπεδο μονάδας λειτουργίας" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "αντιγραφή αρχείων πηγής..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "δεν ήταν δυνατή η ανάγνωση %r για τη δημιουργία changelog" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "Ο προσωρινός μεταγλωττιστής δεν δημιουργεί αρχεία." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Το αρχείο ePub βρίσκεται σε %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_language\" (ή \"language\") δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_uid\" πρέπει να είναι XML NAME για EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_title\" (ή \"html_title\") δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_author\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_contributor\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_description\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_publisher\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_copyright\" (ή \"copyright\") δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Οι κατάλογοι των μηνυμάτων είναι στο %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "στόχοι για %d πρότυπα αρχεία" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "ανάγνωση προτύπων..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "εγγραφή καταλόγων μηνύματος..." -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "λανθασμένος σύνδεσμος: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Οι σελίδες manual βρίσκονται σε %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"man_pages\"; δεν θα καταγραφούν manual pages" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "εγγραφή" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"man_pages\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Η σελίδα HTML είναι στο %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "συναρμολόγηση απλού κειμένου" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "εγγραφή επιπρόσθετων αρχείων" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Τα αρχεία Texinfo βρίσκονται σε %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nΕκτελέστε 'make' σε αυτό τον κατάλογο για να εκτελέσετε αυτά μέσω του makeinfo\n(χρησιμοποιήστε το 'make info' εδώ για να το κάνετε αυτόματα)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "δεν βρέθηκε τιμή \"texinfo_documents\": δεν θα γίνει εγγραφή κανενός κειμένου" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"texninfo_documents\" αναφέρεται σε άγνωστο κείμενο %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "επεξεργασία %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "επίλυση αναφορών..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (σε " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "αντιγραφή αρχείων υποστήριξης Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "σφάλμα καταγραφής αρχείου %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "το αρχείο πληροφοριών μεταγλώττισης είναι κατεστραμμένο: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Οι σελίδες HTML βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %B %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Κεντρικό Ευρετήριοο" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "αντιγραφή αρχείων μεταφόρτωσης..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Δόθηκε άγνωστο math_renderer %r." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "η εγγραφή html_static_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "το αρχείο logo %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "το αρχείο favicon %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Τα αρχεία LaTeX βρίσκονται σε %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"latex_documents\": δεν θα πραγματοποιηθεί εγγραφή για κανένα κείμενο" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"latex_documents\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Ευρετήριο" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Δημοσίευση" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "καμία γνωστή επιλογή Babel για τη γλώσσα %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "αντιγραφή αρχείων υποστήριξης TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "αντιγραφή αρχείων υποστήριξης TeX..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "αντιγραφή επιπρόσθετων αρχείων" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1155,15 +1197,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1222,8 +1264,8 @@ msgstr "Μία αναφορά σφάλματος μπορεί να υποβλη msgid "job number should be a positive number" msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1255,257 +1297,264 @@ msgid "path to output directory" msgstr "μονοπάτι στον κατάλογο εξόδου" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "μία λίστα με συγκεκριμένα αρχεία να επαναμεταγλωττιστούν. Θα αγνοηθεί αν δοθεί το -a" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "γενικές επιλογές" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "μεταγλωττιστής για χρήση (προεπιλογή: html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "εγγραφή όλων των αρχείων (προεπιλογή: εγγραφή μόνο νέων και αλλαγμένων αρχείων)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "μην χρησιμοποιείτε ένα αποθηκευμένο περιβάλλον, πάντα να διαβάζετε όλα τα αρχεία" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "μονοπάτι για το αποθηκευμένο περιβάλλον και τα αρχεία doctree (προεπιλογή: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "παράλληλος μεταγλωττισμός με Ν διεργασίες όπου είναι δυνατό (ιδιαίτερη τιμή \"auto\" θα ορίσει Ν στο cpu-count)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "το μονοπάτι όπου βρίσκεται το αρχείο παραμετροποίησης (conf.py) (προεπιλογή: το ίδιο όπως το SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "να μη χρησιμοποιηθεί κανένα αρχείο παραμετροποίησης, μόνο επιλογές -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "παράκαμψη ρύθμισης στο αρχείο παραμετροποίησης" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "μεταφορά τιμής στα πρότυπα HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "ορίστε ετικέτα: συμπεριλάβατε \"only\" τμήματα με TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "Ο τρόπος nit-picky, προειδοποιεί για όλες τις αναφορές που απουσιάζουν" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "επιλογές εξόδου κονσόλας" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "αυξήστε τον βερμπαλισμό (μπορεί να επαναληφθεί)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "καμία έξοδος στο stdout, μόνο προειδοποιήσεις στο stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "κανένα αποτέλεσμα ούτε προειδοποιήσεις" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "να γίνεται εκπομπή χρωματιστής εξόδου (προεπιλογή: auto-detect)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "να μην παρουσιάζεται έγχρωμο αποτέλεσμα (προεπιλογή: αυτόματη αναγνώριση)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "προειδοποιήσεις εγγραφής (και σφάλματα) στο δοθέν αρχείο" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "μετατροπή προειδοποιήσεων σε σφάλματα" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "απεικόνιση πλήρους ιστορικού σε περίπτωση εξαίρεσης" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "εκτέλεση Pdb σε περίπτωση εξαίρεσης" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "δεν γίνεται συνδιασμός της επιλογής -a και των ονομάτων αρχείων" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "δεν είναι δυνατό το άνοιγμα του αρχείου προειδοποίησης %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "Το όρισμα -D πρέπει να είναι της μορφής όνομα=τιμέ" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "Το όρισμα -Α πρέπει να είναι της μορφής όνομα=τιμή" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "αυτόματη εισαγωγή docstrings από τα δομοστοιχεία" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "αυτόματα κομμάτια δοκιμαστικού κώδικα σε τμήματα doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "σύνδεσμος μεταξύ τεκμηρίωσης Sphinx διαφόρων έργων" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "γράψτε εγγραφές \"todo\" οι οποίες μπορούν αν εμφανίζονται ή να αποκρύπτονται κατά τη μεταγλώττιση" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "αναζήτηση για κάλυψη βιβλιογραφίας" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "να συμπεριληφθεί το math, απεικονισμένο ως εικόνες PNG η SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "να συμπεριληφθεί το math, απεικονισμένο στο φυλλομετρηρή απο το MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "υποθετική εισαγωγή περιεχομένου βασισμένη στις τιμές παραμετροποίησης" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "να συμπεριληφθούν σύνδεσμοι στον πηγαίο κώδικα των τεκμηριωμένων αντικειμένων Python" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "δημιουργία αρχείου .nojekyll για έκδοση του εγγράφου στις σελίδες GitHub " -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Παρακαλείστε να εισάγετε ένα έγκυρο όνομα μονοπατιού." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Παρακαλείστε να εισάγετε κάποιο κείμενο." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Παρακαλείστε να εισάγετε ένα από τα %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Παρακαλείστε να εισάγετε είτε 'y' είτε 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Παρακαλείστε να εισάγετε μία επέκταση αρχείου, π.χ. '.rst' ή '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Καλώς ήρθατε στο εργαλείο γρήγορης εκκίνησης Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Ριζικό μονοπάτι για την τεκμηρίωση" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Σφάλμα: ένα υπάρχον conf.py έχει βρεθεί στοn επιλεγμένο ριζικό κατάλογο." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "το sphinx-quickstart δεν θα αντικαταστήσει υπάρχοντα έργα Sphinx." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Παρακαλείστε να εισάγετε ένα νέο ριζικό μονοπάτι (ή απλά πιέστε το Enter για έξοδο)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Ξεχωριστοί κατάλογοι για πηγή και μεταγλώττιση (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Πρόθεμα ονόματος για πρότυπα και στατικούς καταλόγους" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Όνομα έργου" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Όνομα(τα) συγγραφέα" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1514,15 +1563,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Έκδοση έργου" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Κυκλοφορία έργου" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1532,21 +1581,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Γλώσσα έργου" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Επέκταση αρχείου πηγής" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1554,91 +1603,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Όνομα του κυρίους σας εγγράφου (χωρίς επέκταση)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Σφάλμα: το κύριο αρχείο %s έχει ήδη βρεθεί στο επιλεγμένο ριζικό κατάλογο." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "το sphinx-quickstart δεν θα αντικαταστήσει υπάρχοντα αρχεία." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Παρακαλείσθε να εισάγετε ένα νέο όνομα αρχείου, ή να μεταονομάσετε το υπάρχον αρχείο και να πιέσετε το Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Υποδείξτε ποιά απο τις ακόλουθες επεκτάσεις Sphinx πρέπει να ενεργοποιηθούν:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Σημείωση: τα imgmath και mathjax δεν είναι δυνατό να ενεργοποιηθούν ταυτόχρονα. Το imgmath έχει αποεπιλεγθεί. " -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Δημιουργία Makefile; (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Δημιουργία αρχείου εντολών Windows; (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Δημιουργία αρχείου %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Το αρχείο %s υπάρχει ήδη, παραλείπεται." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Ολοκλήρωση: μία αρχική δομή καταλόγου δημιουργήθηκε." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1648,135 +1697,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nΔημιουργία απαιτούμενων αρχείων για ένα έργο Sphinx.\n\nΤο sphinx-quickstart είναι ένα διαδραστικό εργαλείο το οποίο κάνει κάποιες ερωτήσεις για το δικό σας \nέργο και μετά δημιουργεί έναν πλήρη κατάλογο τεκμηρίωσης και δείγμα \nMakefile για να χρησιμοποιηθεί με το sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "ήσυχος τρόπος" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Επιλογές δομής" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "αν ορίζεται, θα ξεχωρίσουν οι κατάλογοι πηγής και μεταγλώττισης" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "αντικατάσταση για τελεία σε _templates κλπ." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Βασικές επιλογές έργου" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "όνομα έργου" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "ονόματα συγγραφέων" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "έκδοση του έργου" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "δημοσίευση του έργου" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "γλώσσα εγγράφου" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "επέκταση αρχείου πηγής" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "κύριο όνομα εγγράφου" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "χρηση epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Επιλογές επέκτασης" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "ενεργοποίηση της επέκτασης %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "ενεργοποίηση αυθαίρετων επεκτάσεων" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Δημιουργία Makefile και Batchfile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "δημιουργία makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "να μη δημιουργηθεί makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "δημιουργία batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "να μη δημιουργηθεί batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "χρησιμοποιήστε το make-mode για το Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "μην χρησιμοποιείτε make-mode για Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Προτυποποίηση έργου" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "πρότυπος κατάλογος για πρότυπα αρχεία" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "ορίστε μία τιμή προτύπου" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "καθορίστηκε το \"quiet\", αλλά δεν καθορίστηκε είτε το \"project\" είτε το \"author\"." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Σφάλμα: το καθορισθέν μονοπάτι δεν είναι κατάλογος, ή τα αρχεία sphinx υπάρχουν ήδη." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "Το sphinx-quickstart δημιουργεί μόνο εντός ενός κενού καταλόγου. Παρακαλείσθε να καθορίσετε ένα νέο ριζικό μονοπάτι." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Ανέγκυρη μεταβλητή προτύπου: %s" @@ -1827,47 +1876,47 @@ msgstr "Δεν είναι δυνατή η χρήση \"leneno-match\" με έν msgid "Line spec %r: no lines pulled from include file %r" msgstr "Προσδιορισμός γραμμής %r: δεν ελήφθησαν γραμμές από το συμπεριληφθέν αρχείο %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "Το toctree περιλαμβάνει αναφορά στο αποκλεισμένο κείμενο %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "το toctree περιλαμβάνει αναφορά στο μη υπαρκτό έγγραφο %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Συντάκτης τμήματος: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Συντάκτης μονάδας: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Συντάκτης κώδικα: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Συντάκτης: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1882,82 +1931,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Παράμετροι" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Επιστρέφει" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Επιστρεφόμενος τύπος" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "μέλος" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "μεταβλητή" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "συνάρτηση" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "μακροεντολή" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "ένωση" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "τύπος" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Νέο στην έκδοση %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1969,346 +1946,423 @@ msgstr "Άλλαξε στην έκδοση %s" msgid "Deprecated since version %s" msgstr "Αποσύρθηκε στην έκδοση %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Η παραπομπή [%s] δεν αναφέρεται." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Παράμετροι Προτύπου" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Προκαλεί" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "κλάση" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "έννοια" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (κλάση)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Παράμετροι" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Προκαλεί" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Επιστρέφει" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Επιστρεφόμενος τύπος" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "συνάρτηση" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "κλάση" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "ιδιότητα" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "μονάδα" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Μεταβλητές" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (οδηγία)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Προκαλεί" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (ρόλος)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "οδηγία" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "ρόλος" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Παράμετροι" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "μέλος" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "μεταβλητή" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "μακροεντολή" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "ένωση" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "τύπος" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Παράμετροι Προτύπου" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "έννοια" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "εξαίρεση" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (αποσύρθηκε)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (οδηγία)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (ρόλος)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "οδηγία" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "ρόλος" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Μεταβλητές" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Προκαλεί" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "μεταβλητή περιβάλλοντος; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "γλωσσάρι" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "γραμματική ένδειξη" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "ετικέτα αναφοράς" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "μεταβλητή περιβάλλοντος" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "επιλογή προγράμματος" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "έγγραφο" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Ευρετήριο μονάδων" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Σελίδα αναζήτησης" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "το numfig έχει απενεργοποιηθεί. Το :numref: θα ανγοηθεί." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "ανέγκυρο numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "ανέγκυρο numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2325,35 +2379,35 @@ msgstr "η παραμετροποίηση άλλαξε" msgid "extensions changed" msgstr "αλλαγμένες επεκτάσεις" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "ο πηγαίος κατάλογος έχει αλλάξει" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Ο τομέας %r δεν είναι καταχωρημένος" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί." @@ -2377,39 +2431,39 @@ msgstr "άγνωστος τύπος εγγραφής ευρετηρίου %r" msgid "Symbols" msgstr "Σύμβολα" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "αναγνωρίστηκαν κυκλικές αναφορές toctree, θα αγνοηθούν: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "το toctree περιλαμβάνει αναφορά στο έγγραφο %r η οποία δεν έχει τίτλο: δεν θα δημιουργηθεί σύνδεσμος" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "το αρχείο εικόνας δεν είναι αναγνώσιμο: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "το αρχείο εικόνας %s δεν είναι αναγνώσιμο: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "το μεταφορτωμένο αρχείο δεν είναι αναγνώσιμο: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "στο %s έχουν ήδη ανατεθεί αριθμοί τομέα (εμφωλιασμένο αριθμημένο toctree;)" @@ -2419,7 +2473,7 @@ msgstr "στο %s έχουν ήδη ανατεθεί αριθμοί τομέα ( msgid "Would create file %s." msgstr "Θα δημιουργούσε το αρχείο %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2431,149 +2485,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nΑναζητήστε αναδρομικα σε για δομοστοιχεία Python και πακέτα και δημιουργήστε \nένα αρχείο reST με οδηγίες automodule για κάθε πακέτο στο .\n\nΤα μπορεί να αποτελούν αρχεία ή/και σχέδια καταλόγων τα οποία θα \nεκτελεστούν κατά τη δημιουργία.\n\nΣημείωση: από προεπιλογή αυτό το σενάριο δεν θα αντικαταστήσει τα ήδη δημιουργημένα αρχεία." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "μονοπάτι για το δομοστοιχείο για το έγγραφο" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "αρχεία fnmatch-style και/ή υποδείγματα καταλόγου που θα εξαιρεθούν από τη δημιουργία" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "κατάλογο για τοποθέτηση όλων των προϊόντων" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "μέγιστο βάθος από υποδομοστοιχεία για απεικόνιση στο TOC (προεπιλογή: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "αντικατάσταση υπάρχοντων αρχείων" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ακολουθία συμβολικών συνδέσμων. Ισχυρό όταν συνδυάζεται με το collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "εκτελέστε το σενάριο χωρίς τη δημιουργία αρχείων" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "τοποθετήστε βιβλιογραφία για κάθε δομοστοιχείο στη δικής της σελίδα" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "να συμπεριληφθούν τα δομοστοιχεία \"_private\"" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "όνομα αρχείου του πίνακα περιεχομένων (προεπιλογή: δομοστοιχεία)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "να μη δημιουργηθεί αρχείο με πίνακα περιεχομένων" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "μη δημιουργείτε κεφαλίδες για πακέτα δομοστοιχείων/πακέτων (π.χ. όταν τα docstrings τα περιλαμβάνουν ήδη)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "τοποθέτηση βιβλιογραφίας δομοστοιχείου πριν από την βιβλιογραφία υπόδομοστοιχείου" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "ερμηνεία μονοπατιών δομοστοιχείων σύμφωνα με την προδιαγραφή POP-0420 αυτονόητων namespaces" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "επέκταση αρχείου (προεπιλογή: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "δημιουργία ενός πλήρους έργου με το sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "η προσθήκη του module_path στο sys.path, χρησιμοποιείται όταν δίδεται το --full" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "όνομα έργου (προεπιλογή: όνομα ριζικού δομοστοιχείου)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "συγγραφέας(εις) έργου, χρησιμοποιείται όταν δίδεται το --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "έκδοση έργου, χρησιμοποιείται όταν δίνεται το --full" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "έκδοση έργου, χρησιμοποιείται όταν δίδεται το --full, προεπιλογή σε --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "επιλογές επέκτασης" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "το %s δεν είναι κατάλογος." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "ανέγκυρο regex %r σε %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Η δοκιμή της κάλυψης στις πηγές ολοκληρώθηκε, δείτε τα αποτελέσματα στο %(outdir)s python.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "ανέγκυρο regex %r στο coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "το δομοστοιχείο %s δεν ήταν δυνατό να εισαχθεί: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2597,24 +2651,24 @@ msgstr "'%s' δεν αποτελεί μία έγκυρη επιλογή για p msgid "invalid TestCode type" msgstr "ανέγκυρος τύπος TestCode" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Ολοκληρώθηκε η δοκιμή των doctests στις πηγές, δείτε τα αποτελέσματα σε %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "δεν υπάρχει κώδικας/αποτέλεσμα στο τμήμα %s στο %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "Ο ανέγκυρος κώδικας doctest θα αγνοηθεί: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2625,32 +2679,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Η οδηγία Graphviz δεν είναι δυνατό να περιλαμβάνει και περιεχόμενο και ένα όρισμα ονόματος αρχείου" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Το εξωτερικό αρχείο Graphviz %r δεν βρέθηκε ή απέτυχε η ανάγνωσή του" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Η οδηγία χωρίς περιεχόμενο \"graphviz\" θα αγνοηθεί." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "η εντολή dot %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για αποτέλεσμα graphviz), ελέγξτε τη ρύθμιση graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2660,7 +2714,7 @@ msgid "" "%r" msgstr "το dot ολοκλήρωσε με σφάλμα:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2670,27 +2724,27 @@ msgid "" "%r" msgstr "το dot δεν παρήγαγε κανένα αρχείο εξόδου:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "Το graphviz_output_format πρέπει να είναι ένα από τα 'png', 'svg', αλλά είναι %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "κωδικός dot %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[γράφημα: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[γράφημα]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2698,7 +2752,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2708,173 +2762,178 @@ msgid "" "%r" msgstr "η μετατροπή ολοκλήρωσε με σφάλμα:[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Η εντολή LaTex %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για απεικόνιση μαθηματικών), ελέγξτε τη ρύθμιση imgmath_latex" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s η εντολή %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για μαθηματική απεικόνιση), ελέγξτε τη ρύθμιση imgmath_%s" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "απεικόνιση latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "σε σειρά latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "το απόθεμα intersphinx έχει μεταφερθεί: %s->%s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "φότωση του αποθέματος intersphinx από %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "παρουσιάστηκαν κάποια ζητήματα με μερικά απο τα αποθέματα, αλλά υπήρξαν λειτουργικές εναλλακτικές:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "αδυναμία προσέγγισης οποιασδήποτε αποθήκης με τα ακόλουθα ζητήματα:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(στο %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "το αναγνωριστικό intersphinx %r δεν είναι στοιχειοσειρά. Θα αγνοηθεί" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[πηγή]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Εκκρεμότητα" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "βρέθηκε εγγραφή TODO:%s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Το <> βρίσκεται στο %s, γραμή %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "αρχική εγγραφή" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "επισήμανση κώδικα δομοστοιχείου..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[τεκμηρίωση]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Κώδικας μονάδας" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

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

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

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2882,112 +2941,112 @@ msgid "" "explicit module name)" msgstr "δεν γνωρίζω ποιο δομοστοιχείο να εισάγω για αυτόματη τεκμηρίωση %r (προσπαθήστε να τοποθετήσετε μία οδηγία \"module\" ή \"currentmodule\" στο έγγραφο, ή να δώσετε ένα σαφές όνομα δομοστοιχείου)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" στο όνομα automodule δεν βγάζει νόημα" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "ορίσματα υπογραφής ή επιστροφή σημείωσης η οποία δόθηκε για το automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ πρέπει να είναι λίστα στοιχειοσειράς, όχι %r (στο δομοστοιχείο %s) -- θα αγνοηθεί το __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2995,26 +3054,26 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "αδυναμία ανάλυσης ονόματος %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "Το autosummary δημιουργεί αρχεία .rst εσωτερικά. Αλλά το δικό σας source_suffix δεν περιλαμβάνει .rst. Θα παραλειφθεί." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3087,99 +3146,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Ορίσματα λέξης-κλειδί" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Παράδειγμα" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Παραδείγματα" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Σημειώσεις" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Άλλες παράμετροι" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Αναφορές" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Προειδοποιήσεις" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Αποδόσεις" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Κίνδυνος" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Σφάλμα" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Συμβουλή" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Σημαντικό" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Σημείωση" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Δείτε επίσης" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Πρακτική συμβουλή" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Προειδοποίηση" @@ -3211,7 +3270,7 @@ msgid "Table of Contents" msgstr "Πίνακας περιεχομένων" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Αναζήτηση" @@ -3344,34 +3403,22 @@ msgstr "Επόμενο θέμα" msgid "next chapter" msgstr "επόμενο κεφάλαιο" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Παρακαλώ, ενεργοποιήστε τη JavaScript για να είναι δυνατή η λειτουργία\n αναζήτησης." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "αναζήτηση" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Αποτελέσματα Αναζήτησης" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Η αναζήτησή σας δεν ταυτοποιήθηκε με κανένα κείμενο. Παρακαλώ, επιβεβαιώστε ότι όλες οι λέξεις έχουν τη σωστή ορθογραφία και ότι έχετε επιλέξεις αρκετές κατηγορίες." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Σύντομη αναζήτηση" @@ -3408,20 +3455,30 @@ msgstr "Αλλαγές στο API της C" msgid "Other changes" msgstr "Άλλες αλλαγές" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Αποτελέσματα Αναζήτησης" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Η αναζήτησή σας δεν ταυτοποιήθηκε με κανένα κείμενο. Παρακαλώ, επιβεβαιώστε ότι όλες οι λέξεις έχουν τη σωστή ορθογραφία και ότι έχετε επιλέξεις αρκετές κατηγορίες." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Εκτελείται η αναζήτηση" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Προετοιμασία αναζήτησης..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", στο " @@ -3442,30 +3499,30 @@ msgstr "Άνοιγμα πλαϊνής μπάρας" msgid "Contents" msgstr "Περιεχόμενα" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "βρέθηκε ευρετήριο βασιζόμενο σε 4 στήλες. Μπορεί να αποτελεί σφάλμα της επέκτασης που χρησιμοποιείτε: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Δεν υπάρχει αναφορά για την υποσημείωση [%s]." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Η υποσημείωση [#] δεν αναφέρεται." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3477,13 +3534,13 @@ msgid "" "{1}" msgstr "ασυνεπείς αναφορές στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές παραπομπής στο μεταφρασμένο μήνυμα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3510,90 +3567,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης εικόνας: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης εικόνας: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Άγνωστος τύπος αρχείου: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "παράβλεψη" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "αποτυχία" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "άγνωστος τύπος κόμβου: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "σφάλμα ανάγνωσης: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "καταγραφή λάθους: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Ανέγκυρος τύπος ημερομηνίας. Τοποθετείστε στη στοιχειοσειρά μονά εισαγωγικά εάν θέλετε να το εξάγετε απευθείας: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "το toctree περιλαμβάνει αναφορά σε άγνωστο αρχείο %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έκφρασης οδηγίας: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε" @@ -3616,27 +3673,27 @@ msgstr "Κανένα ID δεν έχει ανατεθεί στο κόμβο %s" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί." @@ -3653,13 +3710,13 @@ msgstr "πολύ μεγάλο :maxdepth:, θα αγνοηθεί." msgid "document title is not a single Text node" msgstr "ο τίτλος του εγγράφου δεν είναι μονός κόμβος κειμένου" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" @@ -3678,20 +3735,20 @@ msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θ msgid "unknown index entry type %s found" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[εικόνα: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[εικόνα]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "η λεζάντα δεν βρίσκεται εντός μίας εικόνας." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "μη υλοποιημένος τύπος κόμβου: %r" diff --git a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo index 6ac726babf7ec993b508717c50a96973f474274d..3241b32d61863227329213e9c7325a6f798cb512 100644 GIT binary patch delta 30 lcmeyx{EK-)Gp~uRfr+l6iGq=_m67?z38{>%CVB>33;>bZ2jTz# delta 30 lcmeyx{EK-)Gq16(frYN2xq_jIm8r$X38{>%MtX)^3;>dC2kQU; diff --git a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po index 74dd1c45416..e56ba7b414b 100644 --- a/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Germany) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: en_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 2c153d4549ab8c1801c3144826ae20a6bc50c783..3dcf4c285d235ed3b83d34113fa594d83a144c0d 100644 GIT binary patch delta 30 lcmX@de2#fSGp~uRfr+l6iGq=_m67?z36_kkCVB>33;>3L2VMXG delta 30 lcmX@de2#fSGq16(frYN2xq_jIm8r$X36_kkMtX)^3;>4}2WJ2P diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index e13ab81c23f..4a0b32a1ac2 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: en_FR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index b7dd1861492097fab999ad09a9c91b2a9c7fd2e5..bc40a0843124d4cac65c813591f638a4c2bda950 100644 GIT binary patch delta 11922 zcmZYD33N`^-pBFtL_!7`Bt#;}gCv3sG7v)|#tLel8bVd5Xwg#Ce9+buRBN89cqvL- zqSA>fO4U5HXz*&$UV_$e4MpAWFZ-6q>bYZ=r+qQl zbD_omPJ38ZW&9>o(f|D~C*HEAxh$&>zRPE>Bv{r>E{{yItXA~*PqwTP#2Zp9YY0Z9 zT9!Y~KrdW`wQ&W`#RHguJ?dFjnq}G60vcI#9L7wnP~WnuV|VnyG3bp`F>x6WxlD zcof^=Ev$x(c&Y}@!4T|^<#03x;SAJsm!cozTWe|PgP&q3?nQm@7Yx8+bmQNs2Sqf{ zjg}RUdQd}jV+-tx15nTT0-ND6Cob2}^v9x}pNSP2-|9po4D+xoPC-p*E=J)RR0fTeSig<5ldB6WLI1wJxEyq;eCs5z~=fvAUoeXQDE;$#HuV@~;%{qCzE?0ld?re(zvM>=Lqs41 z)0*05W?$2x2b@Rk&2_AVk1-NM*+>mkAGLx^?0{`hMY+Ur7b>+^kaDp+nwvdugevOJ z*ab(TYUzMYqcn|k=!=(7sV;Ub)4~i?19jsF?1$fDAjY)h|5zWj*L{$GRxba^!VRd? zaT`@*8LdnvdY~3$_oczfvj(AxZY63iXBH<9Hvn#r|#0LL<;a=Rc7K*|d_eACAV_cm|ab5Ax@Up_t-gdr&Lv z_`Dft5-Og7URa1KvYn2nP?@@hdR{_%>I<7=S;n{GJCvltYJ~bgf1HVXF#P!h^2cs4^5|ybha2TFNn{BmPcQ!AcIT%R14E=DE)4v0? zhkG#=Z=)VuiHelbsQ$W`gxMH``KZjTz+Si-m7yo7t@P+h{^Mx)b|t-}HVw-Ycj#sw zkc-;0k*EQtqBnkwO7V8o1b)OA{0UWzPjE11b~l;Wh-|-g9#b)fE zJ!$BL^C9}+H%Nh7`%wc2vvHb871YEMFcj0U4t792cpScp(@?MQJE(~yQNdbyON?iW z^ROK8qMVWi+13Ucn&D@t0lr6l;3z6Zmyo$w_mF2=9ms!e+=wZ78WYjGuc?s+m_Ymz zcEWl1I{u2vP?s0YX&Hglb^aI7(4G{c8_(lFe2N+{x1V_h??URz@_)%>s6R#%e}a*C z8mHquWRcc{{$}N8u_o~oCyvTB#h8UPZ7#e|qZ)pN8F(Jku+jjtC0%eCaSrm&dcc3E zFDr*xj>he%y{_{zuU||?Pppq_Y>cNd2bHm;L1qgFq8&lU1RB+G32NZ4F&*!sQeQXE zOk@_8Azpx9xB_*2*Pv?T80u79!qRvj58_kQa}IDOXJNHh%+H+7uQ=!bH##(tKq^Q# z)XWQaNUL(q?S6{^NQ#wxfQRh$=xkblkm zHXRMoW2pJLpN={WJ+Umlg#BObLy;Il9EaMnrl=KW zVSSv8jj<5h;9V2jR>ny4b9yXhabY`ZE1qI&OdDlVZ98tm0Q#?DD&9k7tQJQ>6K;x% z`(O(kiOKi{DkH_H&w0J6%&`B}X@t?y6!qY2tcrOUg3~b=mt#fz1k2-o)ZP}Mj;-ey zQ%lWJThtZnVlL`9EV0NE1ZK`(GFDV z_B&oi6{j`9yfI^NHQ{X3)+9_cE6+vUpNH8v1{>qaiR3?lM!+PK@(c_k&cRAJ3Uz%R z>Ve;49lYnnZqla-c1K;GgjKNsHL;VZEqsU(Saz~yy@0XU7N<<+g7)Sx9lGHJ`r-pr zYCWcy2~|W5T-PxN!-;2LB(6an*FD$(52Mb%*HjjPT~Qf5h^nO`)Rx_{Y3Pkt`7N{J z8mK*Ng3Yi8YC=m;D_e`o$R5nZ+oE<63f(@bik(VzZas5f99rr<)S{~%@%pTR7wFx}KjU#v+y9yOu07>lQo z;+|mE(QX7POybesfxm zQN*{<3q$f%8|;5L4W%R=^`Hq@3%8(-%NfU;j-_UsV;GJ)4QZ$abVJp|+o*|ufJ*&N zjKR~Wg+0bPSY;05Fuv7>Mm)aZxEgiCF>HnRu`H&~HRreurV)?C>bMzW@fa#o53vfC zf7isxsLypkt$aAD#@<9*$L3ucav!SdAE71?FwdORdRUrxxZ@bq18vlb)?gOybFTZp zXTJHA$1?Ocz?Rq)>)|_2{Pla}U)62BZ;qiKYNbJ_l~=*$n2W7(Jx1d#RI1C*Hv=U& zcELFMN24;a7B%p0PJkbXf=yo);D57CWD z3r!}vV95&$_4#>N9yekL?m}-oi9uL|TF4EXhChwqMP^_(Y6Xd?Oyr;@G8mPS_nrQ; zSey7N>cK&aOOBHjj;f7zs0_S?%J3=-#!XlOccLa{pK?0>z(6{lqCV)q#MFQrD-yRx zW#C0j#Q~@lE=8^66I6|y##}5yZBgb@llpAb_3`M3Q?aJb|6Cf4=-7d7yp2sUc$q1l zuBcpsN&2=Wnh~VU%;Nkp3BWIAUT*uyd0I`Q>Y32iaz)+jMMqQLqiXWTw%_C zTh#Fxk6PJM)WF{&$+1p4zOvG!+~WgdDk`-vV-8Nh2t0>6@BhZWSZ$U0LNXcaGrmSv=q_a18R4xlnogsNtb)h3QXEvP+e0%On%7oaAx4C8S> z+FIc~8v0eNa z-mnkXl7GD*s{fC zA)JPBADKU97i=K^H@Tt3#~d#%ByBc-&3`D^xd^yhldPfQ92qEh=R&c#KjA4bui znqtevEaK&uiC3^XMtx?At~DxioiQ4F*)+70$ry<%u^sNjYUs1o3|t4b=Sf%&TVW9P zL{)Ph`r!!F=O&@H>V4GbHevvNg>F2E<(*x;9_J;ZEKHn;Ua#?g;Lwi7mJ;!iQPuk$W!z} zug}eK^K;BV9oN^eD$c>yxEU+rJq*UOJIwKpMAcF!%+mQELPO{JbL@}p3r&@NhT4)F zSOLp^VSbaTj&9;?RK~_RzKu%pT+|+~#3s1jxqcO6iT`vAW3^Qo-)cr96Z@fV{18=i z8&Ne-hz;-@s%V10a(=9$Ce{>Fu?M;_A9ep`)Yg23mGBU1LBFHMDg8D1*9rn@bii=b z0C|pcQK{XIX?PMt(f1ou)zz>IaZ6M&Ek?a!H=-|oh7tI+;~CUAcTx8>-%0-a(O9_C z{P4MtI{&42nZ1t3mc%KTg=0{s<2wvP|8GquVo)nezNM#b6K2q$0- zEJPJ`kxio-jmyply!M(sYKm_9`=PdI3hDv*s4du!+T#nTl@_B1KEoF1vCsU$;yKiD z`v~>9ljw=RqyCs}7t_!RBlnwuI-uegP{(aLs>tRzuEmzbU!orP4_?RM1LnLxMPP4+7;eN? z7&jB-$^8;Y9f2vmlS zp!V_<#$gfakJ;Ww%r~USqvrlp)RwivSnP`4jBib#p%lM^n#gjD!S&c2kKkYoI%YC4 z4%-lKL7n>ts7%BiH$IOQiHA78jbn*dptdaZggF(p(e6V>LmHaEVhqA9SQd9-ARa=! zLW`XE7S=sQY?jY0N`!d=2&7F{lO3L}hHjN%HSUV+9>b%?9Vf4%CWv zVK81qJ@7V`$A_r<{7;#cgku(QEb4_b9DQ&Ow!_7!fiI&batk%FXQ#-&j+6IkbDkqn z4{nFAVoz*>dr=ed_{pri0_v~X4Y3^kgMKzE8jIzLr=SK{gu1>8LvSl*M!OM z{4RDQwlC69ic*TqyWd7VcpXm1@3A+wKW|pP5o-}2apDK4VvM+8&iz2t@tuPi_$j90 zP1Ke|Uo?NrPQ(F>Z~aK4Cl?a`*ZehmI%==~!BXgT$s9W$bQ1?4yJ01wGUoZK*}?`G zLEI6QiC0kr&&71ykJ(u2H#3nwSVrf65DlH<*HGto6skzppiV^rYC;F`ARb3OXxU}+ z*X(;(kJ!Fq?*AM$k>9XnA*h=2x@u~q94Zc1%=lI`4HZi~cEI|WkME$~RONm*=ROm4 z;|NrdO~NWTA61-NQ4`;X4e=+egn@sU71u@`&s6M(&Cu40*U(7DW2lvQ{LB0X(*RS6 z7h-$-5o0mzn)!;=3^kFNs8oM|%Gl4?0B>L@Mqf7*NXKa6=TH+La-IC^1v85dxeT?! zO&EhaFbXeVIC>PD8!Mw$)(9i9J2t~n*b56$nG3#Qz7saZ%ET|CCOiSF;d?j8zh+uM zhZo+!vUmq|UY}tZ47q7m7=iVPyJBOUg>7)Z69?TgKc=6@Ec&OTw&FOpM&Cb8rn@-4 zW77!W!WXDiA3&w-32Me6f0?*0wjgee+Nyk1Ms}e-cNUe>e`6Si+&0gR!>YuMQ48vY zs+D0_5$!27l#->Wz5N6;@C*iFg*#?zVz4f8ee}dZs0j?gM4X1&k{wtZPoTE&3Ho4- zyCxIysOJtsCTv?{Xt?QEgqlbp#^Yhs4F5)DB>0|Lc`eicIjCZrj^4NuJK=iNL?56g z5c_ZQ3hszn;7b^Yv#_$x|FV(>1EZ?*G!DeSaW(e4Z??wcfmwMP>H+DPjnAWMVLc|` zZ>W@)duX!rwZ9xrBSIMtV!%=U>edvYPP_^+VDkG)5%mlk&E#kMZ0&a2K>u8^& zQAIbRR_I^ate`fkCVHV}J`$Ds`KV*H3AM5ls2aM98Yr@itE3j%IKGMc{5oufhf#0X zU~iX>v28`tNTZ`IR>!HRl&(Xi>L_Z0*PYng$9ygdwer@eB5RM@+kuYDP*r~nYvL7b zjAeaYB}JN5qRkfu8XC9KA_3j+OICBFex#CpUzPW(Qqy3e5A zkiVf;`Uh&|_pmuOD(fmK-ia8^_}2F{lA6d6D>jw_!M=Y zcYw)U94hXP0XWv_pMg66TTv7I5pA9CV>I089cVI93ss%Zqiz_4O66o!ku5}T+=xNA z4Wn@{>hxT5`X8Vc;2mT#Q4h7X%~2V7HOOU`q-ZN06oa)3_26r$<8%jA8&Ty<269j< z9)mjPZ=tGs5o%(aop?9u{Qr#l-0!F&e1xhMcd*GogJ90TiY9{&t#AZtCDT!FvMrd4 z+fiE-7GhGLjJn7sLBR0iiRPDr-H>WHWHL=b%4b5x-Dg*gWyaRg@ zU%)0Q((6D%FQj&v}S?LDk?lQJtP{sD+I{4ZH*wqy4edXi?Fm zyvWf%%%nCGbNFC)R1t1No%f^I7yrg&%no;zd^4JjIu(0S{f|)ZkGM)EgY8hoHxT)p zZM{N6d-owK6WdYMTja#gP%DawFcavEUc^ID6L|yUaTRKXM^F>Ji#jENm5oWLTIuS< zgE3S;|MO|6=+>YH{@96+p;C1gJ7Fq;A1{Jg& zkmOSkQ2f|cFy!XT9`jTFiYOTR*CwC&J08_4xH+L|NJ0O39X$&!FIej;r0^EG=I>k5 zb@8rH*TjM=OW*J)ycF)rDZMsnt>^rlkLDDFY)J6%PmQme8lRNvPEKi*oL10b(_oip zYC>J#f*}bXlqtwANUY)v{(1O+jT>5p;aYeUJ`QyGd;Gsa3mNpze-D`BTKq$dYtnxJ DDBC5b delta 13823 zcmeI$X>?Roy2kNSF^~`fgb)%S1WrOG0vREML1vH;nGCa_W}re!LJBefftHd65fsoC z10pgg4q&S&5kXWC2SgBL5OG2QTM$%0L2*Lw|EYa?^_P3s9X{UGuGRh9@2PXn-uvC} z-WBSloq>A}2Kqh^53IHL@2ddIYK;S;6#eVJvNX$D=(4P-cpvv%Nw=);_;^8@+8EN!yr=^`{EZ)9NXPo?}~c=aEzjVtAIueoQ0wI zH`IXEVmxj^rSLdLV?Ymcy$!xh+#fsPHPpZ|ueYoq?1@@}ftZOmI^KaX#GBFAhQ6)Iyp z9N+3q{*~f`T+kYyK;B`Uac)THV_C_>>5k)21D=Q6Vy#C#cM?@}=P(wpBCBS#B>$?J zd{jnep$2v*Qm@vEzCJUu{anxszD2Fguh-AEu+i}##t>gY z>d^}CZ`M2yjqO}Ls6M1K~2b4PJ=CJ%|sR5v#2H6jT+%0R4Pv+%WXwdC@QA$ zsE+PMCTkr+)k-sZO~V1GqOQbLT!I~N2dY@lV3PKKtHCBU{ZJpcop=>e@Ybu?4zFSm zM(3F|Zio7OAhyLj(Z==I0Czi|??-LN`lLZi9D|x@2Mo~u?@fbjTm7&A7h(#YMco)a z#Igc05j(kf5H-WwhMJC+q2h;7OYjb=$PPGuiOSS3sQ2|6#@T}T7)t+E&*A=5Sb3-$ zDsV9_#0eNS!W31R<2|UQ*@)wD2gYK=O-@Z<7V!-jf;FfKEr`!@0f(Q;CmaGP*{Z7pGuT;%p}#g!()mGjR^82A;(*+=I&Gal9En8%h3^ zvYb)QiG>}B2Vx|tuD}T5#iPv&)?y>#&8UuE!(cpv&G8~?#`VUST@i*V&K&gMY|O%c zAmwC5jV1q`X%vn%safIp5=L?TL&pnPLtKBHS)x0!G4X?V3vNISz{PrKrctPjCZjT% zjo~=ZiN~Rey3|J_p2iYvhA*HVd>iZI5!4JnM!onnYKE6lyWtPiQq?D)%1k)wx{X@v zWK_qwsP|1kWwZ$OoNp!#&1632;sdAy=u^}-x{7QB%S9!ssIr515}2hkx5(W$k?pK zn1cVnPT1r&KEwW)jFp&%kKhR0kJGSqfimRd+lz*_&$FmA`hC=r{D3w_6>=zHS5${< zaTxxBqcFF~WM~a05TC=g*reF9?#6T^3D!2$%$rRz+dT){(Z6*Y4OQcO=Ys z#zZP58_%L%5L0Fbl8648po(fLs>2#5p6A3%F_`PMsHItp_u_ZhTlY^j2iVJ~{eKqq zzETyHG?wjhIe2q+=dPC2!`TkSb*oSBj$Nc2Q!f}u%1RutPvGQ zom>5}Gp@&>c+5v5nMS+m=1;I8r~y5QO8q9(!Ey?_;#Jgk%cw8|8H5SMH(>$J#2EYt z+u%>w1e;eH6HqhH#zge>r4dh~6kFm_)C-CpHJ`-3XjPeA&<|4y*PuGukFD`M zMqp62DdN_sf%ihy$V^n`?!adBZ{0&fYq}OS<0r8TevUn`IVC+9Z$ibZu{$2eTnwLS zmS_SFBCf?OJmDBN%N%h1u`}26F%s{_*4qDToeQsEe?B;ZdO>83$;e>T%!*N&xf5I9 zT5OElP#M^R%*gr*!|@l4!qC|!Bk`!E?uOddMHoi^)_NLRqZcp(ccb>}57-i~VmdaR zW0s^ZrVvj=t>N9MqI?d!;dTteA5a6n?k{HF$D)>|A8P5wqE92di-uCN1~c(RR0n6U zIX1n+Y_B97L7aga=seT_wqR5I7&XIhP!o!nYcdz_*cVl-x1t*t%q9Pi(m2lrt<4hB zp_%VSyJFpcV#WcKtdSA>u^QDxJiszyRSm(r_&Ev&- zQPaPgk!7IPa12J{?Kln>Vjg~h8eqzNbALL95Rb+PEIb1a%_LM$LF0Y6%~~zW5?)KtG`-=2~bnVqoW%r^+`jivDjd8@MupS0J zV2UjS)nT0DSXA{d!9;u%wO#jOeGFV~Y>0YaIBH_q%gMjieynrDdTdAh6b9jb9DqkL z8(TbR;$avhLlbWYh{%R6S4` zDMh7v0V-2lPy_lDH3NI48Aw0W^FvYhO?Tplu`%&Z=lTKE`S25J;7xoFnf)JuHW!BC z2rNgXY8R@CPh$(bhQl#(l}ULCHY1*c!FV5r;X|mIZo)?RK58H*up@qp%9yX^!)C;Z zsFV#yeNc-kn#WKtK7dN?hnR!Gt4)Ubpq64HhT~*xjGg^%*s@+(Od$A>UTw|8x2Gr-J*bu#_^JETo#|>!X z=h#R4|4$k!wmxgk{>(*<(2b1HnuW^5Iw#(TV~M}VUO0H2$;cv9s$WM9;2<`@W2lsW zfqGBqdUI~%V2qCor8G3Ng{Y37LF&WW9ZJ!@1X8`54ENNPngU^VmsoVPF#qZ z;Ud(4>aZTZk2=7Pp>~t&Ni)FoC&|BV9LdjZhtC zqOMOw|I(p$(Ja)2-bJ09Ut>26-)Ih~AsflRK3K$sAl!m_!46Es1E_6x#j(*QGqXh0 z0Q+HU9EZBE8kMN&uz4&L;whMU4+}9YjbaANrx}grD zJhZj{$J5Y@W}_Zlf_l+I<_7CA97X&lMq-O?<}a6YR6N~r5vqfA7=_QHmSivLKs$vR z_yvr|fbGg4>z_nJMVOEJpd4Su<=6>_5@=xaP&Kj?m5Ex^iMZPF0LBpii7L979p+2t zdW<4ofZ_NEX5eOw*8V?9Lu>UruEc?_n14K;z#hbXUNuYd7i>=a2zJ3OXyZ9l#zI~* zMxavM2DQei*bBQjpI2itu@C*<{~Kv&#D}prUP3*XvC|Y?H&hJ_!mj8+)y!k4jO;}X z>=1UwGiYPICes1YA~wfWq2MRL+$sa@0mfLZ4@kR{A3)lpI z!-m-Kkhva(sq}Bf(@4gA)Qjh!2C~qJA96n5fU1%AP&M!ehGEoU^EI7}8h9!yV~a2d zmtjX-f%;YbO^hJ^|CFYno$j^ z<5j2^K7$chhk9-=Y9b$CE`EtRfI5C;iaQr?B+mEIP{(Ug1KETc*$#}vH?aeLf_icN zkIm2O;n<6KE@~jJp=N#v`B~k%f=!9zJ~b2Sj2htesQ2H5`rLOj4W+0I$K#!-BKibV zF#9ueuoPfA@q?I*Z($mKha<4{3G=i1R8)pO$5{LWbr9K~nP=^5kQQgnn#Ex~;uO^W%|O-2EvQ{lj`eW?zKi#w-ZT1Z z%m1tTX3Qq;e$G5U4K z^c%DPyQ7|;iYm4mjKO87B7FumfnC@Q4}C-aThR#l*33KswZGG`0I$c6xCXOu9~R*? z)XWOLGyeiwft`sj<4{b#V2X4G4kBKM8qir(>VHRNu=7Ro-<3w*MYC4(u>tYJsG@ru z3veH5CLJ!Bzmx`J6XH_GS=f+x5hmh;7>}=DOFW5s{#Vq5TYPVdxs#7ZUoMP9?SfiN z#Y@-*+x%euEbob$!Oa+pUev(b8b+xY})Nxw(U_!sPgnU~Gql%+VB*!Q?| z;R1H&Ldq3$V!2Uk^c*UMUt<<#{Aeu3#>6YIGd_Vjus*@o_`MT1{>gkxCZL}8pfd6Z za-Yw7iH1^h6kF&))Qdx|nhdnWX2e}F9EV^O-i8r46Llah!JfDk!|*a{i2{E%e?diH zAn`!d0P-+h`+pJ*t;vI^6K^wW4L?EEg6kKPiH4{b4@3=k4BA+Q8b~c_>7K?Y{0JlQ z5^Cl_znb@V$L7Rt4A%aiLt_LkzzjTw8bJNu%o&}EnqhDB7ac0avm9$t#kvLE_z^ye zy?!@Ka}qW4=GV;gt#CYX3i^7`SU@8UUq=<)MQnkM|1gz&!f@Fa`{I%7xln=48cvP)V_!s(7ULPPdhet zx%_L{9ouq!6l%$;uq)0*od?^n8tVnP{NH+WP_?u)z~}O>*?KPMNIZzG@EB?hFQK+) z@O5TDd8nCOw71VAzg2S+tub#_)#ClL8sz9yr zU8oLfo$GI*Qhyv9VQ77q|72{1ornjauFt`qxEOQs9aOD^1-bm+f~lwhjYch*Zy}9L z8k;d4Phm%F8tk%Su@`E_1*o<2p)#}@)zM3+`>&wh6WhSW&*~g#j!&bOz!l>1|4VB) z>STNj>uLYLLqo-J0F{zcs1ar~bosx}3sKwUUdKlrw_%K)L(T9T)C7VK>PxA)Fw1``Ok|i%ptx7_N?J z32N=1b3VU{?TG(CeJ8{|GdtHCs5n&JnF#s5jE3aQEM9%ZZgmf`w{z4 z)%*r(+lDkVsn0-lnCDoIs*wj!8QF!(^ry{SK7XnjM3@m}p=K}>HIP-P7d?(j>0T%P z9vc%kZ*H!~qt1t+sDYQD_Wu;L@o^l1Z=*65$v=Zs#N8s<|9Wr~7lz|hRLWmN73C2O z#xod(7f~~{qRe(nL|yNUn&CiH#wt()_MvKKqjUWNrV#&zdT*kyg-LBXs)!0vDO!cf zz*f|`@H%Q297PT6oD*L|ofpkon)}+JinR->rfxxHq#9LQvr)TbGisu~FKB2+S5PNl zt5z=m&+4(*lK3vvlB`30z8m$I&R$eeet_NaceF7l+GX{@aj0Tjh1#Bvq9(EvHNeA2 zCVbY<&V_cZUH+fd^RO2;Jci21Db&f1e!xhN|%vRL3Q#4)1ZUZ$MO8YY_Oo1rF{i2m)G=o;j2lyE^K_Mt|&8r8uI&W(pqsXK=n z$aP7kx+5LalIm_wJrLhyrtK-WXSgdWJ>GIVp>p|;`#q6%Wp#0>UFy{>De=s*Cwb|o+*_s5RTVOHJ)UNdoZ^`_%{?it&h>R=z&LwaVFhn- zm)SEtRi*YYds>CJ*j-u4qccn06>fW)x3bbxROYsm{WB;mGqbeg3ahKUaXeL4W>>na zc#Bve0)oHg)UZC^6(^gNnv$aRd>6zYHC^gy2a<8Z?OEM%kAs# zo86~bhNpanyS&OtAn{Ql5@ z3{O?+G*9uA8hfgDlDnflv#_GvE-dnr5~gKO^)UMK$>iF3No8H@2cB?^va3qnQ+Z?I zRPvrsLBG7#PX6cZ{!i1is=eD=<=+4F?v7Lg8S+%|hN2o?Qnz#YD%Xvg0gv0og~g?O z;x3=zsqmIhWqx)cT}<*8S5>&(&MN*ZEyG8T8Zmm*fWi6cY0fQ`?U&zFJHA07tKwgY z<*rH1vg~9HDs5U#d(}yqx42N<|LZlCOvo;*v_}pfo!@^TuWP^3*Tm(kOIlGGkmh9- z|7QtS4R4zs?z**psy|O;NYzxHRArYI&T!jt&eY?y^i?F-GWlG7u#3Gsc3nhWgLU6s zm!gFydCulg-P(ozW$9>p%gbu))B(14S{0kAa^=C+u4Tz8z|^rF?I~{eG<&jF>&DE> z?a8JO|Jrh~vTojnjDSX+QZu@yX6D$Lox5jut=sv8#}$~BmKjnvF?DTF-Mi1F$Nca1 s>-Lua-m3q_R&5>gf7+p=1OL4_|C`OZjm>%G|JBC4)wOba8`s?b0KZRtUjP6A diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 6dd6136fc53..032185a5aa6 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2022-2023\n" "Language-Team: English (United Kingdom) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,104 +38,104 @@ msgstr "Source directory and destination directory cannot be identical" msgid "Running Sphinx v%s" msgstr "Running Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "This project needs at least Sphinx v%s and therefore cannot be built with this version." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "making output directory" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "while setting up extension %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' as currently defined in conf.py isn't a Python callable. Please modify its definition to make it a callable function. This is needed for conf.py to behave as a Sphinx extension." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "loading translations [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "done" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "not available for built-in messages" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "loading pickled environment" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "failed: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "No builder selected, using default: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "succeeded" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "finished with problems" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, 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:376 +#: sphinx/application.py:372 #, 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:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "build %s, %s warnings." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, 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:695 +#: sphinx/application.py:689 #, 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:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, 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:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, 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:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ 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:1299 +#: sphinx/application.py:1293 #, 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:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "doing serial %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config directory doesn't contain a conf.py file (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "cannot override dictionary config setting %r, ignoring (use %r to set individual elements)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "invalid number %r for config value %r, ignoring" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "cannot override config setting %r with unsupported type, ignoring" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "unknown config value %r in override, ignoring" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "No such config value: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Config value %r already present" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "There is a syntax error in your configuration file: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "The configuration file (or one of the modules it imports) called sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,291 +232,328 @@ msgid "" "%s" msgstr "There is a programmable error in your configuration file:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "The config value `source_suffix' expects a string, list of strings, or dictionary. But `%r' is given." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Table %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "The config value `{name}` has to be a one of {candidates}, but `{current}` is given." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "The config value `{name}' has type `{current.__name__}'; expected {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "The config value `{name}' has type `{current.__name__}', defaults to `{default.__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r not found, ignored." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add \"root_doc = 'contents'\" to your conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Event %r already present" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Unknown event name: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Handler %r for event %r threw an exception" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "The %s extension is required by needs_extensions settings, but it is not loaded." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "This project needs the extension %s at least in version %s and therefore cannot be built with the loaded version (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments lexer name %r is not known" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "multiple files found for the document \"%s\": %r\nUse %r for the build." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Builder class %s has no \"name\" attribute" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r already exists (in module %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder name %s not registered or available through entry point" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Builder name %s not registered" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domain %s already registered" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domain %s not yet registered" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "The %r directive is already registered to domain %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "The %r role is already registered to domain %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "The %r index is already registered to domain %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "The %r object_type is already registered" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "The %r crossref_type is already registered" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r is already registered" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser for %r is already registered" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Source parser for %s not registered" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Translator for %r already exists" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r already registered" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "maths renderer %s is already registered" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "the extension %r was already merged with Sphinx since version %s; this extension is ignored." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Original exception:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Could not import extension %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extension %r has no setup() function; is it really a Sphinx extension module?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "The %s extension used by this project needs at least Sphinx v%s; it therefore cannot be built with this version." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "extension %r returned an unsupported object from its setup() function; it should return None or a metadata dictionary" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "invalid PEP number %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "invalid RFC number %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "theme %r doesn't have \"theme\" setting" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "theme %r doesn't have \"inherit\" setting" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "no theme named %r found, inherited by %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "setting %s.%s occurs in none of the searched theme configs" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "unsupported theme option %r given" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "file %r on theme path is not a valid zipfile or contains no theme" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 +#, python-format +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -527,8 +569,8 @@ msgstr "a suitable image for %s builder not found: %s" msgid "building [mo]: " msgstr "building [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "writing output... " @@ -577,7 +619,7 @@ msgstr "%d source files given on command line" msgid "targets for %d source files that are out of date" msgstr "targets for %d source files that are out of date" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "building [%s]: " @@ -586,50 +628,50 @@ msgstr "building [%s]: " msgid "looking for now-outdated files... " msgstr "looking for now-outdated files... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d found" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "none found" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "pickling environment" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "checking consistency" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "no targets are out of date." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "updating environment: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s added, %s changed, %s removed" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "reading sources... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "docnames to write: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparing documents" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "copying assets" @@ -638,36 +680,36 @@ msgstr "copying assets" msgid "duplicated ToC entry found: %s" msgstr "duplicated ToC entry found: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copying images... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "cannot read image file %r: copying it instead" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "cannot copy image file %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "cannot write image file %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow not found - copying image files" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "writing mimetype file..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "writing META-INF/container.xml file..." @@ -675,470 +717,470 @@ msgstr "writing META-INF/container.xml file..." msgid "writing content.opf file..." msgstr "writing content.opf file..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "unknown mimetype for %s, ignoring" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "writing toc.ncx file..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "writing %s file..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "The overview file is in %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "no changes in version %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "writing summary file..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Module level" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "copying source files..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "could not read %r for changelog creation" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "The dummy builder generates no files." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "The ePub file is in %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "writing nav.xhtml file..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "conf value \"epub_uid\" should be XML NAME for EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "conf value \"epub_author\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "conf value \"epub_contributor\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "conf value \"epub_description\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "conf value \"epub_publisher\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "conf value \"epub_identifier\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "conf value \"version\" should not be empty for EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "invalid css_file: %r, ignored" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "The message catalogues are in %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "targets for %d template files" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "reading templates... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "writing message catalogues... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Look for any errors in the above output or in %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "broken link: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "The manual pages are in %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "no \"man_pages\" config value found; no manual pages will be written" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "writing" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" config value references unknown document %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "The HTML page is in %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "assembling single document" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "writing additional files" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "The Texinfo files are in %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nRun 'make' in that directory to run these through makeinfo\n(use 'make info' here to do that automatically)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "no \"texinfo_documents\" config value found; no documents will be written" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" config value references unknown document %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "processing %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "resolving references..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "copying Texinfo support files" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "error writing file Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "The text files are in %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "error writing file %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "The XML files are in %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "The pseudo-XML files are in %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "build info file is broken: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "The HTML pages are in %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Failed to read build info file: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "General Index" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "next" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "previous" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "generating indices" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "writing additional pages" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "copying downloadable files... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "cannot copy downloadable file %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Failed to copy a file in html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "copying static files" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "cannot copy static file %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "copying extra files" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "cannot copy extra file %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Failed to write build info file: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "search index couldn't be loaded, but not all documents will be built: the index will be incomplete." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "page %s matches two patterns in html_sidebars: %r and %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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 "a Unicode error occurred when rendering the page %s. Please make sure all config values that contain non-ASCII content are Unicode strings." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "An error happened in rendering the page %s.\nReason: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "dumping object inventory" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "dumping search index in %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "invalid js_file: %r, ignored" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Many math_renderers are registered. But no math_renderer is selected." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Unknown math_renderer %r is given." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path entry %r does not exist" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path entry %r is placed inside outdir" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path entry %r does not exist" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path entry %r is placed inside outdir" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "logo file %r does not exist" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon file %r does not exist" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in configuration options)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s documentation" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "The LaTeX files are in %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nRun 'make' in that directory to run these through (pdf)latex\n(use `make latexpdf' here to do that automatically)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "no \"latex_documents\" config value found; no documents will be written" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" config value references unknown document %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "no Babel option known for language %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "copying TeX support files" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "copying TeX support files..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "copying additional files" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Unknown configure key: latex_elements[%r], ignored." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Unknown theme option: latex_theme_options[%r], ignored." @@ -1153,15 +1195,15 @@ msgstr "%r doesn't have \"theme\" setting" msgid "%r doesn't have \"%s\" setting" msgstr "%r doesn't have \"%s\" setting" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "Failed to get a docname!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "Failed to get a docname for source {source!r}!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "No footnote was found for given reference node %r" @@ -1220,8 +1262,8 @@ msgstr "A bug report can be filed in the tracker at ." msgstr "For more information, visit ." @@ -1253,257 +1295,264 @@ msgid "path to output directory" msgstr "path to output directory" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "general options" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "builder to use (default: html)" +msgid "builder to use (default: 'html')" +msgstr "" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "write all files (default: only write new and changed files)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "don't use a saved environment, always read all files" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "path for the cached environment and doctree files (default: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "build in parallel with N processes where possible (special value \"auto\" will set N to cpu-count)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "path where configuration file (conf.py) is located (default: same as SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "override a setting in configuration file" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "pass a value into HTML templates" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: include \"only\" blocks with TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "nit-picky mode, warn about all missing references" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "console output options" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "increase verbosity (can be repeated)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "no output on stdout, just warnings on stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "no output at all, not even warnings" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "do emit colored output (default: auto-detect)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "do not emit coloured output (default: auto-detect)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "write warnings (and errors) to given file" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "turn warnings into errors" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "show full traceback on exception" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "run Pdb on exception" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "cannot combine -a option and filenames" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "cannot open warning file %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D option argument must be in the form name=value" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A option argument must be in the form name=value" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "automatically insert docstrings from modules" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "automatically test code snippets in doctest blocks" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "link between Sphinx documentation of different projects" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "write \"todo\" entries that can be shown or hidden on build" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "checks for documentation coverage" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "include maths, rendered as PNG or SVG images" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "include maths, rendered in the browser by MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "conditional inclusion of content based on config values" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "include links to the source code of documented Python objects" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "create .nojekyll file to publish the document on GitHub pages" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Please enter a valid path name." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Please enter some text." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Please enter one of %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Please enter either 'y' or 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Please enter a file suffix, e.g. '.rst' or '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Welcome to the Sphinx %s quickstart utility." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Please enter values for the following settings (just press Enter to\naccept a default value, if one is given in brackets)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Selected root path: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Enter the root path for documentation." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Root path for the documentation" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Error: an existing conf.py has been found in the selected root path." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart will not overwrite existing Sphinx projects." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Please enter a new root path (or just Enter to exit)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "You have two options for placing the build directory for Sphinx output.\nEither, you use a directory \"_build\" within the root path, or you separate\n\"source\" and \"build\" directories within the root path." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Separate source and build directories (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Inside the root directory, two more directories will be created; \"_templates\"\nfor custom HTML templates and \"_static\" for custom stylesheets and other static\nfiles. You can enter another prefix (such as \".\") to replace the underscore." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Name prefix for templates and static dir" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "The project name will occur in several places in the built documentation." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Project name" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Author name(s)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx has the notion of a \"version\" and a \"release\" for the\nsoftware. Each version can have multiple releases. For example, for\nPython the version is something like 2.5 or 3.0, while the release is\nsomething like 2.5.1 or 3.0a1. If you don't need this dual structure,\njust set both to the same value." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Project version" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Project release" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "If the documents are to be written in a language other than English,\nyou can select a language here by its language code. Sphinx will then\ntranslate text that it generates into that language.\n\nFor a list of supported codes, see\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Project language" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "The file name suffix for source files. Commonly, this is either \".txt\"\nor \".rst\". Only files with this suffix are considered documents." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Source file suffix" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "One document is special in that it is considered the top node of the\n\"contents tree\", that is, it is the root of the hierarchical structure\nof the documents. Normally, this is \"index\", but if your \"index\"\ndocument is a custom template, you can also set this to another filename." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Name of your master document (without suffix)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Error: the master file %s has already been found in the selected root path." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart will not overwrite the existing file." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Please enter a new file name, or rename the existing file and press Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Indicate which of the following Sphinx extensions should be enabled:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has been deselected." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "A Makefile and a Windows command file can be generated for you so that you\nonly have to run e.g. `make html' instead of invoking sphinx-build\ndirectly." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Create Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Create Windows command file? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Creating file %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "File %s already exists, skipping." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Finished: An initial directory structure has been created." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "You should now populate your master file %s and create other documentation\nsource files. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Use the Makefile to build the docs, like so:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Use the sphinx-build command to build the docs, like so:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "where \"builder\" is one of the supported builders, e.g. html, latex or linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nGenerate required files for a Sphinx project.\n\nsphinx-quickstart is an interactive tool that asks some questions about your\nproject and then generates a complete documentation directory and sample\nMakefile to be used with sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "quiet mode" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "project root" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Structure options" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "if specified, separate source and build dirs" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "if specified, create build dir under source dir" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "replacement for dot in _templates etc." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Project basic options" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "project name" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "author names" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "version of project" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "release of project" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "document language" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "source file suffix" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "master document name" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "use epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Extension options" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "enable %s extension" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "enable arbitrary extensions" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefile and Batchfile creation" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "create makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "do not create makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "create batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "do not create batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "use make-mode for Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "do not use make-mode for Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Project templating" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "template directory for template files" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "define a template variable" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Error: specified path is not a directory, or sphinx files already exist." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart only generate into a empty directory. Please specify a new root path." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Invalid template variable: %s" @@ -1825,47 +1874,47 @@ msgstr "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Line spec %r: no lines pulled from include file %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree glob pattern %r didn't match any documents" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree contains reference to excluded document %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree contains reference to nonexisting document %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "duplicated entry found in toctree: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Section author: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Module author: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Code author: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Author: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr ".. acks content is not a list" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr ".. hlist content is not a list" @@ -1880,82 +1929,10 @@ msgstr "\":file:\" option for csv-table directive now recognises an absolute pat msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Duplicate C declaration, also defined at %s:%s.\nDeclaration is '.. c:%s:: %s'." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parameters" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "Return values" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Returns" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Return type" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "member" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variable" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "function" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "struct" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "union" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "type" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "function parameter" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "New in version %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1967,346 +1944,423 @@ msgstr "Changed in version %s" msgid "Deprecated since version %s" msgstr "Deprecated since version %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "duplicate citation %s, other instance in %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Citation [%s] is not referenced." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Duplicate C++ declaration, also defined at %s:%s.\nDeclaration is '.. cpp:%s:: %s'." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Template Parameters" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Throws" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "class" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "concept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "template parameter" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s method)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Throws" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Returns" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Return type" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "function" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "class" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "module" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "duplicate %s description of %s, other %s in %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicate label of equation %s, other instance in %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Invalid math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directive)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Raises" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (directive option)" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (role)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directive" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "directive-option" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "role" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "duplicate description of %s %s, other instance in %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Duplicate C declaration, also defined at %s:%s.\nDeclaration is '.. c:%s:: %s'." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parameters" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Return values" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "member" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variable" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "struct" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "union" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "type" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "function parameter" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Template Parameters" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Duplicate C++ declaration, also defined at %s:%s.\nDeclaration is '.. cpp:%s:: %s'." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concept" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "template parameter" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in variable)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in class)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (class in %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s class method)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static method)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (%s property)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "exception" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "class method" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "static method" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "property" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "more than one target found for cross-reference %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (deprecated)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directive)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (directive option)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (role)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directive" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "directive-option" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variables" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Raises" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Malformed option description %r, should look like \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" or \"+opt args\"" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s command line option" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "command line option" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "glossary term must be preceded by empty line" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "glossary terms must not be separated by empty lines" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "glossary seems to be misformatted, check indentation" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "glossary term" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "reference label" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programme option" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "document" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Module Index" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Search Page" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "duplicate label %s, other instance in %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicate %s description of %s, other instance in %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig is disabled. :numref: is ignored." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Failed to create a cross reference. Any number is not assigned: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "the link has no caption: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "invalid numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "invalid numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "undefined label: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Failed to create a cross reference. A title or caption not found: %r" @@ -2323,35 +2377,35 @@ msgstr "config changed" msgid "extensions changed" msgstr "extensions changed" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "build environment version not current" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "source directory has changed" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "This environment is incompatible with the selected builder, please choose another doctree directory." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Failed to scan documents in %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r is not registered" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "document isn't included in any toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "self referenced toctree found. Ignored." @@ -2375,39 +2429,39 @@ msgstr "unknown index entry type %r" msgid "Symbols" msgstr "Symbols" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "circular toctree references detected, ignoring: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree contains reference to document %r that doesn't have a title: no link will be generated" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "toctree contains reference to non-included document %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "image file not readable: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "image file %s not readable: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "download file not readable: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s is already assigned section numbers (nested numbered toctree?)" @@ -2417,7 +2471,7 @@ msgstr "%s is already assigned section numbers (nested numbered toctree?)" msgid "Would create file %s." msgstr "Would create file %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nLook recursively in for Python modules and packages and create\none reST file with automodule directives per package in the .\n\nThe s can be file and/or directory patterns that will be\nexcluded from generation.\n\nNote: By default this script will not overwrite already created files." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "path to module to document" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fnmatch-style file and/or directory patterns to exclude from generation" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "directory to place all output" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "maximum depth of submodules to show in the TOC (default: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "overwrite existing files" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "follow symbolic links. Powerful when combined with collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "run the script without creating files" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "put documentation for each module on its own page" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "include \"_private\" modules" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "filename of table of contents (default: modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "don't create a table of contents file" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "don't create headings for the module/package packages (e.g. when the docstrings already contain them)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "put module documentation before submodule documentation" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpret module paths according to PEP-0420 implicit namespaces specification" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "file suffix (default: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "generate a full project with sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "append module_path to sys.path, used when --full is given" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "project name (default: root module name)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "project author(s), used when --full is given" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "project version, used when --full is given" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "project release, used when --full is given, defaults to --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "extension options" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s is not a directory." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "section \"%s\" gets labeled as \"%s\"" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "invalid regex %r in %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Testing of coverage in the sources finished, look at the results in %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "invalid regex %r in coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "undocumented c api: %s [%s] in file %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "module %s could not be imported: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "undocumented python function: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "undocumented python class: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "undocumented python method: %s :: %s :: %s" @@ -2595,24 +2649,24 @@ msgstr "'%s' is not a valid pyversion option" msgid "invalid TestCode type" msgstr "invalid TestCode type" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Testing of doctests in the sources finished, look at the results in %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "no code/output in %s block at %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "ignoring invalid doctest code: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== slowest reading durations =======================" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "hardcoded link %r could be replaced by an extlink (try using %r instead)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz directive cannot have both content and a filename argument" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "External Graphviz file %r not found or reading it failed" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignoring \"graphviz\" directive without content." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot command %r cannot be run (needed for graphviz output), check the graphviz_dot setting" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "dot exited with error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "dot did not produce an output file:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format must be one of 'png', 'svg', but is %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "dot code %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n\nTraceback: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "convert exited with error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "convert command %r cannot be run, check the image_converter setting" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX command %r cannot be run (needed for maths display), check the imgmath_latex setting" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s command %r cannot be run (needed for maths display), check the imgmath_%s setting" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "display latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "inline latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx inventory has moved: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "loading intersphinx inventory from %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encountered some issues with some of the inventories, but they had working alternatives:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "failed to reach any of the inventories with the following issues:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "external %s:%s reference target not found: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx identifier %r is not string. Ignored" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Failed to read intersphinx_mapping[%s], ignored: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "TODO entry found: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(The <> is located in %s, line %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "original entry" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "highlighting module code... " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Module code" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Source code for %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Overview: module code" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

All modules for which code is available

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "invalid value for member-order option: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "invalid value for class-doc-from option: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "invalid signature for auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "error while formatting arguments for %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "don't know which module to import for autodocumenting %r (try placing a \"module\" or \"currentmodule\" directive in the document, or giving an explicit module name)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "A mocked object is detected: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "error while formatting signature for %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" in automodule name doesn't make sense" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "signature arguments or return annotation given for automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ should be a list of strings, not %r (in module %s) -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "missing attribute mentioned in :members: option: module %s, attribute %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Failed to get a function signature for %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Failed to get a constructor signature for %s: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "missing attribute %s in object %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "alias of %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias of TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Failed to get a method signature for %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Invalid __slots__ found on %s. Ignored." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Failed to parse a default argument value for %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "Failed to update signature for %r: parameter not found: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "Failed to parse type_comment for %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary references excluded document %r. Ignored." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: stub file not found %r. Check your autosummary_generate setting." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "A captioned autosummary requires :toctree: option. ignored." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,26 +3052,26 @@ msgid "" "%s" msgstr "autosummary: failed to import %s.\nPossible hints:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "failed to parse name %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "failed to import object %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: file not found: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary generats .rst files internally. But your source_suffix does not contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "document exactly the members in module __all__ attribute. (default: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Keyword Arguments" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Example" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Examples" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Notes" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Other Parameters" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "Receives" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "References" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Warns" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "invalid value set (missing closing brace): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "invalid value set (missing opening brace): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "malformed string literal (missing closing quote): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "malformed string literal (missing opening quote): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Attention" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Caution" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Danger" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Note" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "See also" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Warning" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "Table of Contents" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Search" @@ -3342,34 +3401,22 @@ msgstr "Next topic" msgid "next chapter" msgstr "next chapter" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Please activate JavaScript to enable the search\n functionality." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Searching for multiple words only shows matches that contain\n all words." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "search" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Search Results" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Quick search" @@ -3406,20 +3453,30 @@ msgstr "C API changes" msgid "Other changes" msgstr "Other changes" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Search Results" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "Search finished, found ${resultCount} page(s) matching the search query." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Searching" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Preparing search..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", in " @@ -3440,30 +3497,30 @@ msgstr "Expand sidebar" msgid "Contents" msgstr "Contents" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 column based index found. It might be a bug of extensions you use: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Footnote [%s] is not referenced." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Footnote [#] is not referenced." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "inconsistent references in translated message. original: {0}, translated: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "inconsistent citation references in translated message. original: {0}, translated: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "%s:%s reference target not found: %s" msgid "%r reference target not found: %s" msgstr "%r reference target not found: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Could not fetch remote image: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Could not fetch remote image: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Unknown image format: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "undecodable source characters, replacing with \"?\": %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "skipped" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "failed" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "Problem in %s domain: field is supposed to use role '%s', but that role is not in the domain." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "unknown directive or role name: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "unknown node type: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "reading error: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "writing error: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Invalid date format. Quote the string by single quote if you want to output it directly: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contains ref to nonexisting file %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exception while evaluating only directive expression: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "default role %s not found" @@ -3614,27 +3671,27 @@ msgstr "Any IDs not assigned for %s node" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Could not obtain image size. :scale: option is ignored." @@ -3651,13 +3708,13 @@ msgstr "too large :maxdepth:, ignored." msgid "document title is not a single Text node" msgstr "document title is not a single Text node" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "encountered title node not in section, topic, table, admonition or sidebar" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Footnotes" @@ -3676,20 +3733,20 @@ msgstr "dimension unit %s is invalid. Ignored." msgid "unknown index entry type %s found" msgstr "unknown index entry type %s found" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "caption not inside a figure." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "unimplemented node type: %r" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index d2a9903343e576557a2abfbf36f063f3fba6df9f..4ec313b409b99e7c71003eedff97cb41c9220161 100644 GIT binary patch delta 30 lcmeyv{D*l$Gp~uRfr+l6iGq=_m67?z3F(ZiCVB>33;>c|2j~C* delta 30 lcmeyv{D*l$Gq16(frYN2xq_jIm8r$X3F(ZiMtX)^3;>ex2k`&^ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index bb9316f16ee..bd446cbdb05 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://app.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: en_HK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 3d9b26aa7731533f67ce80210fd5b25652b6cab6..32270d296deb1b5bfd4169bd504396de2c6d3acc 100644 GIT binary patch delta 40 wcmX@XcY<$&E(@=Tu7QcJp^1W#v6YeeW-FEqMivu21Fp$FOp=@Tvvx890Mcy=4*&oF delta 40 wcmX@XcY<$&E(@=*u7QQFp}B&giIu6vW-FEqMiwJIL$1j_Op=@Tvvx890Mk+m7ytkO diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 0d3362101cf..df3cb6039b0 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tatsuro YOKOTA , 2021\n" "Language-Team: Esperanto (http://app.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:331 sphinx/theming.py:377 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indico universala" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indico" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "sekva" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Aŭtoro:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,433 +1930,438 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametroj" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membro" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcio" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" +msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "nomaĵo" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "%s() (klaso)" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipo" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/changeset.py:23 +#: sphinx/domains/javascript.py:331 #, python-format -msgid "New in version %s" +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcio" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klaso" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" +msgstr "datenoj" + +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "atributo" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klaso" +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" -msgstr "%s() (klaso)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametroj" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membro" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "nomaĵo" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" -msgstr "datenoj" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" -msgstr "atributo" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipo" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "escepto" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "Simboloj" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Avertoj" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Eraro" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Averto" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3343,34 +3402,22 @@ msgstr "Sekva temo" msgid "next chapter" msgstr "sekvo ĉapitro" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "serĉu" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3407,20 +3454,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3441,30 +3498,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 59eba6587af14f55ff416306706205ee6bf77855..53d7b2c749a968f63b4cdd6653ab0abc4f514679 100644 GIT binary patch delta 11739 zcmYM)dwkF3|Htw7XEt`QF`I2{cED`L4z`(@F_W`4hb`x`ITRwwq3}WF_;sjZ*|#Ky zR*@`*%Bd!&e2IkAwix?b1oy56h4OYggvTy=N; zP{)0>#s7}ESymWM2vYR_|NFGLWi4=6)@QhaYdR)a)*t+QHp#L&(SN9gWlbUWOyOR9 z34QTb^uW6qhYxW%#-v(STik`MEX!%#q0yC&<}EEN3tzy7xD&nbJbGd!M&s|Of%>Oe zRs<$s6y~B{I2i+Q8v5fBtc`D?p0^c!up9$;zx6qdAUeK9U3eY+@G(ZBAH&px5>Yp1 zqaKulk=PIOa0co*Comf?+i`Td>CZ$xKM#Yk07H1cHH$_~T#Xv}25gMGFciPD<9oP= zIIOj0kxlCyYCzr@mQ@3TP#FkER>f*;+ZP)UFT!x#j9st-of?U68_TML(a5q|>8KY! zjar&lu?SD%NF0-CSv0Mqs3q`VLF-~Pk~FIgM&cAyrV4G}LS=RfYDsssCI9Vc?6)s? zgt5e)bjlW}5f8*HoQb+|530xxVHBQ1l4IRM)krfgRz`ZG1~vdGGiwq?VhQU0iY%vD zlQVSGr{iagz{jW;MYK0Fh{asuWYi1h*>1rG#9txHZT*g_fkqU7iZ}!N;1E;|ZO7_( z2)*&BlSU|wv$i);FRIzW+&Bn_6K}&>SnCPPYJw4{weE}^@k#88uVD|oh#}a7AC-wL z)P%Yq8_4Q~sx{{V8d{TL)Cfyasr&?44eJi7n36l07Zo65u}V?3at-6LL1)sAJy69t z9b@o)Y=~#<{=0S@M+K_>tQ;DRxL^_1zz;AAKSnOF&Y_mXpXo(n3sh0{LH#}$mGUCg znr=hQ>{E2ZQ%EwbGpK_oxSRRC1G;Pf_ob2Iu&hCtzy&M1n-}au#YfNs@1ct6AKL)( zOmeKIs24tqRX88DohLqNGVmhm_YJrhci|vxpF`GozxAdXxEHkq=Wzg5p)%2tg3#KJ z!DO6<-dKv7*~h31-N$D!q$fu+F2tJn73%(r=z~>u|6O#((^0LLz1>g`9%wt-?w^dc z>0gWP_#O_#4^f%%?roN?HZ~^?!5}i)2?L1-vjuejbLflnF&0<$A^)B<_Ryi!9zqS^ zJT}40sABWZ<1oS;OvZ9#wX7=CzD~_I8F<=uG3sC|wLOS4i7#LP<~?PKe(Y1^e+V7Z z=+FSpqDESUO5NY6)Oq$bCu9gJZiXt_HrN=4p&tAS>b^IyI&MNu@B`FyccLbE7**`2 zoiwy27f`9WV*hX(wWfb#9SrSf9+-fE#4S zW+2T_19N852%^ymo8e&8gBRg=T!oyfu8Pz^vZzeWybs2+#?#QBxP*exjCP?0xDWM$ zGpOG$p)zzGxy5p03($00gK5OkQI08CiHR6A*c3@;Ody_w)SI;qC*uuNhK93#+9h*Q z2h9f5l2l+MR^e#$8ET65Ib@?)Coo_8KXjN$(PWI~hfgsAD{&#Z4LAFB32Nq7F$TRy zm^c|#jD1o4>oE$CU|X!hRv0_dEXi;zCVmDBoHRT}@kfL@a2g&$6;JB|wkEbmckGCf z*bUF(GpLMZF+DBeR1C!>s7!1|z4$0*qGOCneLGZbyn#-w*#;UO_#SHiZbwz?_o!WQ z9jl}JSRRHxs5Sfsmtf*J^HJH0y8k9>APt_jCxWV}_NezgX~+3blYey#r$fau4z)JV z;Zi(+I-s6>#_anSQ4iXRDzZJ;08gTd^BQX4kFhn@rh@BZcl5&1sO>okhvTgA%>-V@AB+9LI3O~q6^g*oUk(G+DKb|IdH8ps!@R9`@4%>P;Q6^%hH&2ZEJreieD zLk)b3lZFnI3fphchxiIM!T(`n44GtE^{_4K#(t=oy?`p#m6(m&k!@w&!g$PKtAyiA z7>32D0hePGI#19@r*R!s12NB;6vdo_rMI|h1eAj zp_amDs>xUbigzOlFcW zgg6&9^RXC!3$P9rV=!*TK<)nu8nJX-MD5pV?7`ZYjkT~3CgDhQ$3oPL-@ruNfm(`6 zjKhCWOBXxcta(pV1_q#>TZmf15{%UTKSU!CFQeA%J_cix8733$um$l`s2426y0`m6K*sTlu~nfXZ6 z1IFS2oQ`eqG$x?$ER*s~3?Uwb%FOeq-&dfXw-1})?OEhs9TBt52=h_#Y}DHAKn?6P zY7OsUDEiE?to|5--El5zX^x|=KZV|S7X#5jnl+#x)Qb~s2RUifqhldP;5(>&dJxm` zIOd@HT(%naL8bHvs+caKmh2DI2^l)i%(x+H3EN^eK7|@k5r*Ri)UG+`q>)X-XTG^H z2epRdFbLP84w~(li}z7$-sNR8fL^F28HGymRJ(rzDw8|W7pt&2-p3S-e#P`V2heCs z$5`x&n=lNoV+{JdY6g^oDxv~ZF)l+@|9;eiZ(tOLEif}|hgzy3s2Z4wde17<5`2wJ z)M-7U(U*?Ig~kP_lz)$Xu-PJW0?t7X;*F?UC`D!DGgQWEF6K{hY>V0*V{K>K7GeYX zOHmX25)-xmf2N@t2wY-Do`6by4mQC8)XbKmM!prB;sw;&S6gaqfx3PecESZ%6Hj0q zUcgr9{x9=+&cs;WZw;fNR4qb{u*8lJVMF2{P&0QdGeuPcUAx9MA64axQ3F_qZLk8X z>%QeiPt@~jp(d1!&aO1_?F-(*M#Lpp1CL-wJcTW>?g|t4KyTue=#Kx!nz$Y{^R3tc zZ(|osTWPlC98{)DQ198dlKiVtNk?<6{+h`|3hKo@Q6pW2df_hA^#?H)uh_BQ>*gDh zjOx!u?e}L;1AG~^oflyw9zhvfyH$le zJ8A;^QJJ`g8ps1wMjEa%{o_!z@B-?&>zy=O&?rR}$9Je&2v}`qoQQRZGq5h^U;vJ? z~eiC>)PkqyO0bzo8HDO^m^Z zn1PLpOe%+Ad*ZpMnmLHtUPn;_x{4am1JukT-!O3x?5F)dg+@DmIEJmzYpqFbHfmr! z(F^;cQal{>pk^)_^yGgVH(*`u|Fbj(^FtMeVwX3~ zJ|BfciC17UUdJ?ydduvF{;2-ts5AW_*25oBDgO&w;$zg3wOnUr-VIg6lND?KucDzD zeS#XmRrEl&x6MF2F`hUTHN%mp>lUGQM~UrWtV{f>9Y4Y#;>h);*jk}p+}@50(5W?= zNTV0d#c({0t??$d!MJzKi8ltd#w$_xy@6WW_b~*&w*4J7K=%!1K#>?moQAqC50$A2 z8_2&Nw1AFaTx2)_`wRwGd|-+-cB{!? zDr(I$kfd4@kfO7Ew&|b!DEMto^Rd}Y$6z|De`pSdQK)^r0DW;a>OmXr-@n1e#P_io zHrQ@n*bOzao~Si{8vSuLs)$#hcGFta(rj|l&<&qrZ9Ip1@h=#OcTsB^{E<08;!y`j z25JCL;7lBc5m<@c&~1mw=#$uhxB#{9=cAUm2(?7cT{LuJeT`az|6&5(Lp`ubnK{Wi z@xq98i{)G z5bTAsaW|gC=W$`V`R+f&DB>RcsQV|PigiBf=-r3j_zNoaw`?Dx23&oQj%L>1kA^PD zN3G>hY>7)y)qMc-@fQrj%)Msjd8psVVpm*_I-tHqJ-TNWo#mD{v~_Ks|WWesd7Lgj(xT?0_F)F5bePn0>$$?Q5tP zZb7~9LrlZn7>YLzkbkAr=b%Y#L+ni48gpV}i3nRpyBe^B&CEzx>R#&g&Ly*@Vs zYJ)ma=U`hbMHS&Mc7Ny>=DN;bIL+5HiqQ8(VlrkGY?9ylB|;H8*}8!!U@ zi?#4E*2h|h%{L$p`x7UkCb9^laX-42!bu~`!CGJvKg1s~Yd;j*5kHN(@LkjrY)8HD z2zJF^u@1I4${(UUrz2`0U5}Xz^~Vt6<+vHQ;3&*JZq66y4jP*A84SaFI3EK~m;n`` z9&iLZ<4@>`v0s@bX@L!iU%`2}1@o}!NmF#QZC^tTbQ9Lb-AHDg)=?Tt5jqX^2!>|-R(Cd^LP%X?L4#7Awk%x7O=bSc2@GA5r-i-11G1k!jucVDg#kx%yt}y9f>PY5A;53&X07|t}4JtoR6z;BWelLzcB;p zg%f$dHIzm;p1`{JJJvzRIg|Q8RMEwwe(#7$I1n4-Qq%;tqdy);)y(%;9j{;@UPDdL z@vX_2FS`EwUl0x5m|*|V9;1l6pK1|<5JWEH=!hLW684js*<{q3zKQGbAP&Xhm8Qt{ zqXzf~>P6v~&Bv)5stDJiGIRpl;(gn+pH0f2M|Q9^4>b^H?iIdBG)i$P*1T#id;_(; zHlf!3eGJ8&_z+KH2R!+UsdE2c&A^i}n*M&6g|kr;_zb6F*l*@}E0LOTTE#S~^TTFL z$E~QMyNdPkq5XSs73)YGj)U$G=d*Rj7efVOM;N4Y2Dib8?Qs zDB_RM7tdfS{)Bo@&~5VXPoozNITH22=dl$o#&|r4jqnDlxB~8&s?Wk?;;}dii*Y$V z!c1KDr@8+a>i+wvOoiPwU&EGn$$vH-6X;N}ZNmWk7{l-gdg2xAg4a_pYV zS9TnCpZ``sJOc+{1@^#*2PPhmD%uL{h@O9u|9UiX{xVB27L~$xF#-=`BwocKSmST= zhsJ1Be-UbCyRk7|Lf!9pXugUOs2O*_ARL6DI0ftDawm=UG)l1(R$(nn`o~mldsKf< zbjQ^giN&bQePYM|pq3*1k@-ufH+m7jis`rlYvU1A(O$r&=(HZ2qcIM%=;(lTa6YOg zR-<0D1>^8H)W`!ZhwBB2IEc74w!zhyfTvM2wj2)EpI*VJO!vSBINIp6UZ$auyn{>d zIBvndZVp!wJwnw+8~(h}z_M`$=3^#)g(^~ScZcf;PRB6f5vV1ZgBs9AY>8iEbM*93 z?BrWdLsdN7jpF_?33~Ff-YdBmdUn_g)M4W+8NkHb}Ly-_bJLS48Ghof6fhif~ILj67gwInZN zGOn@Xqu7r45^6h#`Z`>-m5AELldvw9`#PMie;)sejv;hJ`zx$>2Q4pyZf6|Z^GXE;8n*A zXb{E{??I)w5;gNGd;uK+4%cUPIwleC#8AA7T64ERhikWlVkB`IMqoeGK{nkQYm5D{D8NP>`s zv#9GUQPq9djx(an3v+Q4{mW4I{|}W(_l72OUC`Nvj@~qKbRlYuzQbDh80%rJMrJ@w zQ7_Cw?SeepXHeBX50#-})HmXDtcE|JmY~w^uiMyc^Q6Y?fBo&(myW481od$^jq1OF z8pvJL%&SM6rAkAcm`hPJ-+@Z?UDW-LPy-5UV$S}SsHH7H72k3kgJn&e=0K<)W46&S z)K{+<^~d4|s3j=JEIfeeXvLcQTBANDb1)U($6)*sx8Qv&!Szke_U#mB4z!u541VaO zp{hNMDw?Qf=7J}%fOsbA!9QSs3}|ll{{+<1ZAN9H5_P{pV+CGkA!R*fhbUzB{H6_eRb9Rn&DAs8rrU4J<6tJg7J79GQu#fi^^?z=?Jg>ytyvVxL51mU45Dk|7T+~@P1b6I`u?jP%G^?lE|bI(2J_xqhQBkRUf zF)MzFi5zJbbEm~$hiX|?Tl}GgT7UlaX0Bx|by?P1xSG$5?POVJxP79tWeuVKKo`pj z&~DYuvdVA;Ho{-94%Y2%S=o3AuEGNBgL|>SvLaSY56c=#M{n$hOE3-hV14`o>)|=f z!1Jhyrt)+O_Qh13hI--k7>`S_DXzmNxD7Sl3)m3%VLb1*-shqP9iO8<_y@*e<3h`_ zF&Q;bKh%SxQ3FkN?$5$8v~Na@^C=F%@11t{o~Hi_)c783i6Lyo`>mB+T!NcWGvAKw za4#m}S57;&mu2mwor7KR6ly|kiYzM@+oK|ohh)d<=2(hJwC~1bd6*dB=xqe zX4oC`aVREY6)H7%;#xd{GjTo%rF3s! z;?K49j`M-IewLL52fls z9FAXNE9^1EL}C;wa#tZc&zga%wa8suC?}7iX1Eg-%Kb=st(Z$qF%3k$D1^+_+KH-_ z-!T_+si=-P8C9IiumkSGG(7I~*JYM!_d@D7Vol{DosPRP7N5sde9e5oI)zF}>g6VP z15hcMi40(sp+dd|mD3kdD|-`b;ZY=b)^XH9)M1#pe{)A36FH2H@k?xozd8MNM-%^C zI^wy=!~v**=U`I|JMCqt`*)yYzK}_&Zk7P8d)8VbOkc+`MCOu$Oib4xG| zZ^xnd0P1`>jVkIo6c+VtHAcNRGMNj_q!cx?1*q+GJ$A&ksDXFmTzm(0WEYWeO=J;j z<+oxkIerqG(*BGRR}Gv+P4HLL_;FLr{gz0CB32d`jA`{jp0(CuHlD+-m_$B0;b_dn z8!!(aMGDzEh?ST<%|vKDYS-*S9W;kgDY2%T^CJVjG%v+T+W*_QV5eEJGuUc49u=ak zn1MfI3MRQZ)vyn;7;6t|<*75xJ|BW=m!pdDcBlUkYC^R==0wfF0@@y|&-< zRFTd?EnpG$#1+^E_mmO;`dl2P;}ZN5XW-A6gA>Zl3zi^hw4Oz+EU|*GTpW$v@Npc0 z$1xK-`^`_RNti(UAynvhpw5+Vu@LJ-C|zy0zNm?e!wj5`GjIuNC8sbMW9FFyDBZCu zYUP8lJ&wY5I3HW%derkzqgMPrs+hmQ0T_u3m~B^#xpZtrz33pe#a~b>XdX0GoQ<0K z6{s3nf{NSj#B;X)IMbX1NDu@Abj32wl~_yp$T%cyO77L|&huoE_^GO6f~*}UJH%!P8d6jcL{ zVNcwF8u%nO@I@ zCh#OS#ZOQx{1UaI_-jna(jEJwigYS^@kV?QPoq+@;##xvmr>8}!HM`G7GbCB%n?5K zI^wU8ucM-+F-yJ$Md>VCz-pNS%(^ zw9Bvn*J2vJgPC{^6|uzCW}*eC_Bhn%=Ak06231?@P`hWlH zagF18)PN76R<;L+;^)r&{M*ehp8|}fe=-h64|d1DIqf6ZfOh&FX8YycLHsYFqbnVq zu|FyT0UU_W;$?UqGjLF~3B3=~Y2WC$1#@WcM@8Tl%*BK?CQ<`Y6Pk-!z!Rv699TpA zHPB(_gRVPGI~(KZABhU}RMdH}6k~7$7UD*<@h}$SAE-!;y2})C0QKChI0`po0{(>Y z*f6rz?9UWzLPsWQr9H6`PDf3o9JRu0P!W3sHL+(<5&O*P&$!#vOc$(2|5Q|DOR)g& zMn&jdR0JYlbJ2{8pRqYMxW~-QMzy)?0wY4PN8;9 zqkB!e5U-*=9sA-AR3v`FM%w>*_nDdX#`@eCgbMWt)If_cA2(qVeuPTV52zQnxu30x zxsH2KA)mUzxEdA7S8xh`jEUIo0TvqJqL>Q}xDa(<+>g`n4eWwh51OA)Q?NVjYE=L0 zn2f(8p|lboGO6f}`dlwmkyWB1a}%oAw>s^2FrpRy#D!**`mi}L`k*E<2(^v;s0rSO z`rK|z#m^jF8_f#SQT;u!1x`j4VF1(dYSjBSIQ?&IB>vId(V^{g3bmqwP3FiPk3DH$ zk45;L)Bh8y2JFoy1(~Q77GW!#>3B72!fQ||cmmtvUg!St&BR}!`<)I=q{S9f)me@M z@Q{mNFZe2Ue}vD}=74#WmC|nfIDZC!o&U$O?&0|*Pq4)>rz{2haMNkN6KP#2=qE zE6m$zYGNQN0>iK`7CWxSuC(7qMXuI!iZuDp;6g>S7&Wu?*c+cfz4#2OI2-Na3kj!T z2wOgHeo(B$RN9A7&tJeIZ1#eg@JMVxdjaZvS?stHV|l-I7Z*eDe&@ysR4%{4?%3u< zQ{BZlmi7W{fp4O6d)&GIGY+Ml{E|7qW}#lV2HW8MsEF;v3_OPs4bbXkGhhxT(;kHF zaVBc!%P~3-PN982DmCXFvtKbGorssye+{<8y{PYkBX}joy=o@x##q|nSBbxh=vq3G za4Bj68*wu3#_5={+p>ZfK@I#p>R@X4n#pxf97ww#j>N?{3g5%#n7YTjumJVGe%J$t z?unSjL;48K67D1V2fss2IPncrtX(jLwjUegYE;fQ zU<^Ko6YwR}%3JL>H4quaMJyd*?B^mCm{0qKH%;!p!M?PAMSZUDEt7)&s25Jap|}v6 z;VW31aXvsz5jv2xBhZ zhzj+Ss2uJ@P3Qwuu^mNKd5e$DAGdi?5%~_aJqtcDzjoK4#yf}|G4`O@WnIyxJsKlx zxCn5emB#+vOe6)%Y3HK0<9gIKdJYx3cTu@KjxF$a=YISlld3FiNB<;jgAr_s>re~Z zhIR3&L&QIUi(PbRh3}$5_9<#YCs7YxaQYj6YL41gs0sDL`dEzm{3O(P0o03^;cR@! zx!>@x89yCo(4TXd`0K^D(xH{ygZdJB0u%8C%)x`GmDfGO7Q@!q50_(Wd>s|y<9H=G zZv2@UZ{|@m!79|}ZbU8cKGb-dBV1_aJ8=rWhm$eynE4fa3wEKs9kmNiVg|POKQpo3 z=%($%+i^dp;?(2j`3Ppx-h$cqE~K57>%#`d@twOwCC z72(G?0?%S3nTvium={jNSlY9&1pU|zKfwN2|3~iOFzkujQN{N)DncWFGJhVp3_H<2 zgX1viXEUK74yAoFCgFQO6aQgcd`pL_w%0G_0Gfh&@f-}|2Gk4Ve>E!_flXsn<>5m>_FRt+EpulBmN#PUZi6crkyw60Z*a^_y#pVTPmv+_QxJL z5eMLHSO*VaJbr?0@oQ8H>t8Ux6Plq`J_!~2hj9v?jW``6|DYo2xECklX&jD&{$bjy zQB{2!2V;)qiso`2_NTo9lkiPU!7tIq1}<0h|IqA+ooO#e_3uJ0Eb=KA+8$OdGe8EW z(Hw+YaVfUI2x^<%g>7&<_Q$ty2*&ZH-x$YY9G0N^gBXK5(Z&~1k^9WFBUWmRE1HXe z*p(Y$)HZws3$X^9;Mb^XzJOWSu8u2ua*o7)v`euWZbsF{PSlI`qqbk8x@O{qsPV_( zWbOZ{Toma6%)=j1D{dESCRBv2Y5P$jUhcRBHIY4d3x11Ra8W&1^mjyBeOI(LrlTh2 z#f7*Kd*fNm<^5J(16TBno`Nc#C8(4B}Dihij~K%Gq2p|;ZsR1G|UTIo*I_BoC=HjFbV$w3`p zV^9;BhT2u@unPY`MRZ|fld{#QiEe4^GXMYI5ju1bopP+x#1-8Q?NGUzhuV%;;~0Dd zufz+eNEJ6V#TG`rXcy{p2XF?qZ{~__$7QJdx1mz9rCG!j-*ZmK8SKjqE8Z2|&;3xv zH3l!kYHW^&@G3luQ}OZy6TvO03B83%**T{_v$#k(D?Ix8h*@7JFj1magcxWCbeJucN*ba$A`RMKF{0VT{GPt6&sjmdd?)IRTrHcrA6yc%_qtw(+Sgmd3YG&Pcnn&5D>aS3W$Z+80sj*4(X zTbF(nN31biXgjPzeQE5+iFh6rfpJMD^dam|`+3xUzJQ8cX0q8eV^N=<=d^D_742iF zBl=^f|1e%o`!^h}{XaOxtmHQA!i{aH?eQ5ZbVast5GqB(Q91UbQnJRme-QP;W2m#g zVX8?*0uH1dKo#ZFsNGdRjpEk+Pv%0^n27_h2q)pS=*CY_UlzU6%>>t?R{91i0;f?E zYTnKj{hiPYHIdb*;@yebZolGi%+D~p=^BhQqT^96R4mV;Qg94AVAJ;I=8>r$whSXBT>fO~;<22O1UWp3b4lKbls25$?%@zFGeg^)$sa14q)X#_{-n zsM_e+%N6~XS0Ac)!>FTtHQM;H<1x&jU8~4^E)!Kt1Euz@j|**wm8cv&fePh5$J0eM z&*eOp-gtrStFY&L13{m^!p;a*mlPMYu!CXGY}@0nDD};<=ex_o-d^0Qxx4t8)_ux+ z!I14QwS$#jkFV6{u}ghr-k=@w+X3&)u&=Bn&%S(Cg+Jgev3;d>uG{tnFMifrQZszc zAFlDUycOPnI~26@0*qyz_f>?vfeLq7Syi4rFdVY0{NaEdI?^Y zxWrrP4wr>`*|S6CWmz?^RjhBD@2i;atqA!8Rd%UAV0#yu71^Euugnd2OL={T#~WQj zDT9{OOj!j_^IE)%Mws_pw!IxjzDbM*xFsu659TP{o zNrMT!DX1{1SFI`UcBcCBDyy7&>+jR-9dZIsBu>g8p7aNHHFpZYUTNP z^uLR7v~V-;>RmTC8ZRQHGOFkhvS+*Jd+jtQ1Zm27h(KE=uGM)x?CR9}5^5IQd!}}_ zGENZ9{LRGO(e&il{))0HJ9n_{uhgP~)t(1dWvcLUugbCKdcBqQEWgr604nTR<`vNt z(;2M!_JRCbjk@OM7v^>@use6_)xEGL=i!j6c9*=)H4ksRC%fgyuy?+n6xd~MvqyK= zL^o;CJ5%e}*|Ch&RtJ z_68U%{4aagL@(rH=U;sK;`Viyg?N9Sb+N*I4xCv&T6HIKQ+TFYb0{pL>ZDr+~*B*!>`5Fe+gQYx^pCgNnyxSv>1R z(XQV7T1s{Q@0+!Y#?8YXx80lr?tqxuD~ zk5^EvyPx~F5p!%Es3jUuLC6SLRH=uld3PiyyAHX=N2`rjL=QzOfFSEo+5L!J#a<`N z7i;w5nUYz_cwUapa$g0*_Ok!ep|bY-6xZC?KsZ|G)k(*ahG}0$&yb4+ptUNO6#Kso z>6;bi%%2yg)-Tq^pQp=?skZCc+UWs**?*NZew=rTy-IN=zB*;2^{wgfmVn#CiNN;` z^^|5J6-eX1_x&$Etq-NGJ>1b{@0i)qwIwEwv7={@Nknz>u{JGpD2OtDbklM8IIqeb zytZDxYhxFt5Iuo{%!3VA;w@8k*q$&axW1@8zM0x(C4BFPh!tCI$JTsTRjvOAYpAcy diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 350c41d6b14..83d7dda03cd 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -16,14 +16,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2023\n" "Language-Team: Spanish (http://app.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: es\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -46,104 +46,104 @@ msgstr "Directorio fuente y directorio destino no pueden ser idénticos" msgid "Running Sphinx v%s" msgstr "Ejecutando Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede construir con esta versión." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "creando directorio de salida" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "mientras configura la extensión %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python invocable. Por favor, modifique su definición para que sea una función invocable. Esto es necesario para que el archivo conf.py se comporte como una extensión de Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "hecho" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "no disponible para mensajes incorporados" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "cargando el ambiente pickled" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilación %s, %sadvertencia (con advertencias tratadas como errores)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilación %s, %s advertencias (con advertencias tratadas como errores)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "compilación %s, %s advertencias." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ya está registrada, esa se reemplazará" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,70 +164,75 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "directorio de configuración no contiene un archivo conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Se encontró un valor de configuración no válido: 'language = None'. Actualice su configuración a un código de idioma válido. Volviendo a definir 'en' (Inglés)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no se puede reemplazar el ajuste de la configuración del diccionario %r, haciendo caso omiso (utilice %r para definir elementos individuales)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número no válido %r de valor de configuración %r, haciendo caso omiso" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no se puede reemplazar los ajustes de configuración %r con tipo no compatible, haciendo caso omiso" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "No hay tal valor de configuración: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hay un error de sintaxis en su archivo de configuración: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,291 +240,328 @@ msgid "" "%s" msgstr "Hay un error programable en su archivo de configuración:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuración `source_suffix' espera una cadena de caracteres, una lista de cadena de caracteres o un diccionario. Pero `%r' es dado." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuración `{name}' tiene tipo `{current.__name__}'; esperado {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuración `{name}' tiene el tipo `{current.__name__}', el valor predeterminado es `{default.__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r no fue encontrado, se ignora." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Desde v2.0, Sphinx usa \"index\" como root_doc por defecto. Agregue \"root_doc = 'contents'\" a su archivo conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Evento %r ya presente" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nombre de evento desconocido: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Manipulador %r para el evento %r lanzó una excepción" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "La extensión %s es requerida por la configuración de needs_extensions, pero esta no es cargada." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Este proyecto necesita la extensión %s por lo menos en la versión %s y por lo tanto no puede ser construido con la versión cargada (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "El nombre del lexer de pigmentos %r se desconoce" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "varios archivos encontrados para el documento \"%s\": %r\nUse %r para la compilación." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Constructor clase %s no tiene ningún atributo \"name\"" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Constructor %r ya existe (en el módulo %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Nombre de constructor %s no registrados o disponibles a través del punto de entrada" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Nombre de constructor %s no registrado" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "dominio %s ya esta registrado" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "dominio %s no esta registrado" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "La directiva %r ya fue registrada en el dominio %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "El rol %r ya fue registrado en el dominio %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "El índice %r ya fue registrado en el dominio %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "El %r object_type ya está registrado" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "El %r crossref_type ya está registrado" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r ya está registrado" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser para %r ya está registrado" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Analizador de fuentes para %s no registrado" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Traductor para %r ya existe" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs para la función add_node() debe ser una tupla de función (visitar, salir): %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r ya esta registrado" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "el renderizador matemático %s ya está registrado" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "la extensión %r ya se fusionó con Sphinx desde la versión %s; esta extensión se omite." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Excepción original:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "No puede importar la extensión %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extensión %r no tiene ninguna función setup(); ¿es realmente un módulo de extensión de Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "La extensión %s utilizada por este proyecto necesita al menos la versión de Sphinx v%s; por lo tanto no puede ser construido con esta versión." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "extensión %r devuelve un objeto no soportado de su función setup(); debe devolver un diccionario de metadatos o ninguno" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "número de PEP inválido %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "número RFC inválido %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "tema %r no tiene configuraciones de \"tema\"" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "tema %r no tiene configuraciones de \"heredar\"" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "no encontrado ningún tema llamado %r, heredado por %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "configuración de %s.%s se produce en ninguna de las configuraciones de tema buscado" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "opción de tema no soportada %r fue dada" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "archivo %r o ruta del tema no es un archivo zip válido o no contiene ningún tema" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "sin tema llamado %r encontrado (¿falta el archivo theme.conf?)" +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 +#, python-format +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -535,8 +577,8 @@ msgstr "una imagen adecuada para %s constructor no encontrado: %s" msgid "building [mo]: " msgstr "compilando [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "escribiendo salida... " @@ -585,7 +627,7 @@ msgstr "%d archivos fuente dados en la línea de comandos" msgid "targets for %d source files that are out of date" msgstr "los objetivos para %d los archivos fuentes que estan desactualizados" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "compilando [%s]: " @@ -594,50 +636,50 @@ msgstr "compilando [%s]: " msgid "looking for now-outdated files... " msgstr "buscando por archivos no actualizados... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d encontrado" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "no encontrado" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "preparando ambiente" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "verificando consistencia" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "no hay archivos objetivo desactualizados." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "actualizando ambiente: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%sañadido, %s cambiado, %s removido" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "leyendo fuentes... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparando documentos" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -646,36 +688,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabla de contenido duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copiando imágenes... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "no puede leer el archivo de imagen %r: en su lugar, lo copia" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "no se puede copiar archivo de imagen %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "no se puede escribir archivo de imagen %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow no encontrada - copiando archivos de imágenes" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "escribiendo el archivo mimetype..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "escribiendo el archivo META-INF/container.xml..." @@ -683,470 +725,470 @@ msgstr "escribiendo el archivo META-INF/container.xml..." msgid "writing content.opf file..." msgstr "escribiendo el archivo content.opf..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype desconocido para %s, ignorando" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "escribiendo el archivo toc.ncx..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "escribiendo archivo %s..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "El archivo de resumen está en %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "no hay cambios en versión %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "escribiendo archivo de resumen..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Funciones incorporadas" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Nivel de módulo" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "copiando archivos fuente..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "no se pudo leer %r for para la creación del registro de cambios" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "El constructor ficticio no genera archivos." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "El archivo ePub está en %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "escribiendo el archivo nav.xhtml..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "el valor de configuración \"epub_language\" (o \"language\") no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "el valor de configuración \"epub_uid\" debe ser XML NAME para EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "el valor de configuración \"epub_title\" (or \"html_title\") no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "el valor de configuración \"epub_author\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "el valor de configuración \"epub_contributor\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "el valor de configuración \"epub_description\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "el valor de configuración \"epub_publisher\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "el valor de configuración \"epub_copyright\" (or \"copyright\") no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "el valor de configuración \"epub_identifier\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Los catálogos de mensajes están en %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "objetivos para los archivos de plantillas %d" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "leyendo plantillas... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "escribiendo catálogos de mensajes... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Busque cualquier error en la salida anterior o en el archivo %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "enlace roto: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Error al compilar expresiones regulares en linkcheck_allowed_redirects: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Las páginas del manual están en %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "no se encontró el valor de configuración \"man_pages\"; no se escribirán las páginas del manual" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "escribiendo" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "El valor de configuración \"man_pages\" hace referencia a un documento desconocido %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Página HTML está en %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "ensamblando documento sencillo" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "escribiendo archivos adicionales" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Los archivos Texinfo están en %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nEjecute el comando 'make' en ese directorio para ejecutarlos a través de makeinfo\n(usa el comando 'make info' aquí para hacer esto automáticamente)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "no se encontró el valor de configuración \"texinfo_documents\"; no se escribirán documentos" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "El valor de configuración \"texinfo_documents\" hace referencia a un documento desconocido %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "procesando %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "resolviendo referencias..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (en " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "copiando archivos de soporte Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "error escribiendo archivo Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Los archivos de texto están en %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "error escribiendo archivo %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Los archivos XML están en %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Los archivos pseudo-XML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "el archivo de información de compilación está roto: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Las páginas HTML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Error al leer la información de compilación del fichero: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "siguiente" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "generando índices" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "escribiendo páginas adicionales" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "copiando archivos descargables... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no se puede copiar archivo descargable %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Error al copiar un archivo en html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "copiar archivos estáticos" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "no se puede copiar archivo estático %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "copiando archivos extras" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "no se puede copiar archivo extra %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Error al escribir el archivo de información de compilación: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los documentos: el índice estará incompleto." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "página %s coincide con dos patrones en html_sidebars: %r y %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de que todos los valores de configuración que contengan contenido que no sea ASCII sean cadenas Unicode." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ha ocurrido un error al renderizar la pagina %s.\nRazón: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "volcar inventario de objetos" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "volcar el índice de búsqueda en %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Muchos math_renderers están registrados. Pero no se ha seleccionado math_renderer." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Desconocido math_renderer %r es dado." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entrada html_extra_path %r no existe" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "entrada html_extra_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entrada html_static_path %r no existe" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "entrada html_static_path %r se coloca dentro de outdir" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "archivo de logo %r no existe" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "el archivo %r usado para el favicon no existe" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Los archivos LaTeX están en %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nEjecuta el comando 'make' en este directorio para compilarlos usando (pdf)latex\n(usa el comando 'make latexpdf' aquí para hacer esto automáticamente)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "no se encontró el valor de configuración \"latex_documents\"; no se escribirán documentos" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "valor de configuración \"latex_documents\" hace referencia a un documento desconocido %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Versión" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "No se conoce la opción de Babel para el idioma %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "copiando archivos de soporte TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "copiando archivos de soporte TeX..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "copiando archivos adicionales" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Clave de configuración desconocida: latex_elements[%r], ignorada." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Opción de tema desconocida: latex_theme_options[%r], ignorado." @@ -1161,15 +1203,15 @@ msgstr "%r no tiene configuración de \"tema\"" msgid "%r doesn't have \"%s\" setting" msgstr "%r no tiene configuración de \"%s\"" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1228,8 +1270,8 @@ msgstr "Se puede presentar un informe de error en el rastreador en ." msgstr "Para más información visite ." @@ -1261,257 +1303,264 @@ msgid "path to output directory" msgstr "ruta al directorio de salida" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "una lista de archivos específicos para reconstruir. Ignorado si se especifica -a" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "opciones generales" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "constructor a usar (por defecto: html)" +msgid "builder to use (default: 'html')" +msgstr "" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "escribir todos los archivos (por defecto: solo escribir archivos nuevos y modificados)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "no usar un entorno guardado, siempre leer todos los archivos" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "ruta para el entorno en caché y los archivos doctree (predeterminado: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "construir en paralelo con N procesos donde sea posible (el valor especial \"auto\" establecerá N en recuento de CPU)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "ruta del archivo de configuración (conf.py) donde se encuentra (predeterminado: igual que el valor SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "no use ningún archivo de configuración, solomente opciones -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "sobreescribir un ajuste en el fichero de configuración" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "pasar un valor a la plantilla HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "define la etiqueta: incluye bloques \"only\" con TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "modo quisquilloso, advierte sobre todas las referencias faltantes" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "opciones de salida de consola" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "aumentar la verbosidad (puede repetirse)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "sin salida en salida estándar, solo advertencias en los mensajes de error estándar" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "sin salida, ni siquiera advertencias" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "emitir salida de color (predeterminado: detección automática)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "no emite salida de color (predeterminado: detección automática)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "escribir avisos (y errores) al fichero indicado" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "convertir advertencias en errores" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "con -W, sigue adelante cuando recibas advertencias" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "mostrar rastreo completo en excepción" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "ejecutar Pdb en excepción" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "no se puede combinar la opción -a y nombres de archivo" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "no se puede abrir el archivo de advertencia %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "argumento de la opción -D debe estar en la forma nombre=valor" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "argumento de la opción -A debe estar en la forma nombre=valor" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "insertar automáticamente docstrings de los módulos" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "probar automáticamente fragmentos de código en bloques doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "enlace entre la documentación de Sphinx de diferentes proyectos" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "escribir entradas de \"todo\" que se pueden mostrar u ocultar en la compilación" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "verificación para el cubrimiento de la documentación" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "incluir expresiones matemáticas, mostradas como imágenes PNG o SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "incluir matemática, mostrada en el navegador por MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "inclusión condicional de contenido basado en valores de configuración" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "incluir enlaces al código fuente de objetos documentados de Python" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "crear archivo .nojekyll para publicar el documento en páginas GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Por favor, ingrese un nombre de ruta válido." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Por favor, ingrese algún texto." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Por favor, ingrese uno de %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Por favor, ingrese cualquiera de 'y' o 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Por favor, ingrese un archivo de sufijo, por ejemplo, '.rst' o '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Bienvenido a la utilidad de inicio rápido de Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Ingrese los valores para las siguientes configuraciones (solo presione Entrar para\naceptar un valor predeterminado, si se da uno entre paréntesis)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Ruta raíz seleccionada: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Ingrese la ruta raíz para la documentación." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Ruta raíz para la documentación" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Error: un archivo conf.py ya existe en la ruta raíz seleccionada." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart no sobreescribirá proyectos existentes de Sphinx." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Por favor, ingrese una nueva ruta raíz (o ingrese Enter para salir)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Tiene dos opciones para colocar el directorio de compilación para la salida de Sphinx.\nO usas un directorio \"_build\" dentro de la ruta raíz, o separas\ndirectorios \"fuente\" y \"compilación\" dentro de la ruta raíz." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Separar directorios fuente y compilado (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Dentro del directorio raíz, se crearán dos directorios más; \"_templates\"\npara plantillas HTML personalizadas y \"_static\" para hojas de estilo personalizadas y otras archivos\nestáticos. Puede ingresar otro prefijo (como \".\") Para reemplazar el guión bajo." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Prefijo de nombre para directorios de plantillas y estático" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "El nombre del proyecto aparecerá en varios lugares en la documentación construida." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Nombre de proyecto" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Autor(es)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1520,15 +1569,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx tiene la noción de una \"versión\" y un \"lanzamiento\" para el\nsoftware. Cada versión puede tener varios lanzamientos. Por ejemplo, para\nPython, la versión es algo así como 2.5 o 3.0, mientras que el lanzamiento es\nalgo así como 2.5.1 o 3.0a1. Si no necesita esta estructura dual, simplemente\nconfigure ambas con el mismo valor." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Versión del proyecto" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Liberación del proyecto" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1538,21 +1587,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Si los documentos deben escribirse en un idioma que no sea inglés,\npuede seleccionar un idioma aquí por su código de idioma. Sphinx entonces\ntraducir el texto que genera a ese idioma.\n\nPara obtener una lista de códigos compatibles, vea\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Lenguaje del proyecto" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "El sufijo del nombre de archivo para los archivos de fuente. Comúnmente, esto es \".txt\"\no \".rst\". Solo los archivos con este sufijo se consideran documentos." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Sufijo del archivo fuente" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1560,91 +1609,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Un documento es especial porque se considera el nodo superior del\n\"contents tree\", es decir, es la raíz de la estructura jerárquica\nde los documentos. Normalmente, esto es \"index\", pero si su documento \"index\"\nes una plantilla personalizada, también puede establecerlo en otro nombre de archivo." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Nombre del documento maestro (sin sufijo)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Error: el archivo maestro %s ya se ha encontrado en la ruta raíz seleccionada." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart no sobreescribirá el archivo existente." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Ingrese un nuevo nombre de archivo o cambie el nombre del archivo existente y presione Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Indique cuál de las siguientes extensiones de Sphinx deben habilitarse:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Nota: imgmath y mathjax no se pueden habilitar al mismo tiempo. imgmath ha sido deseleccionado." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Se puede generar un archivo Makefile y un archivo de comandos de Windows para que usted\nsolo tiene que ejecutar, por ejemplo, `make html' en lugar de invocar sphinx-build\ndirectamente." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "¿Crear Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "¿Crear archivo de comandos para Windows? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Creando archivo %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "El archivo %s ya existe, omitiendo." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Terminado: se ha creado una estructura de directorio inicial." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Ahora debe completar su archivo maestro %s y crear otros archivos fuente\nde documentación. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Use el archivo Makefile para compilar los documentos, así ejecute el comando:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Use el comando sphinx-build para compilar los documentos, así ejecute el comando:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "donde \"builder\" es uno de los constructores compatibles, por ejemplo, html, latex o linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1654,135 +1703,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nGenere los archivos necesarios para un proyecto Sphinx.\n\nsphinx-quickstart es una herramienta interactiva que hace algunas preguntas sobre su\nproyecto y luego genera un directorio completo de documentación y un ejemplo del archivo\nMakefilepara ser utilizado con el comando sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "modo silencioso" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "raíz del proyecto" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Opciones de estructura" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "si se especifica, separe los directorios de fuentes y de compilación" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "si se especifica, cree un directorio de compilación en el directorio de origen" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "reemplazo para punto en _templates, etc." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Opciones básicas del proyecto" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "nombre del proyecto" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "autores" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "versión del proyecto" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "liberación del proyecto" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "lenguaje del documento" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "sufijo de archivo fuente" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "nombre de documento maestro" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "usar epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Opciones de extensión" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "habilitada extensión %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "habilitar extensiones arbitrarias" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "creación del Makefile y Batchfile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "crear makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "no crear makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "crear batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "no crear batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "use el modo make para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "no use el modo make para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Plantillas de proyecto" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "directorio de plantillas para archivos de plantillas" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "definir una variable de proyceto" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "se especifica \"quiet\", pero no se especifica ninguno de \"project\" o \"author\"." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Error: la ruta especificada no es un directorio, o ya existen archivos sphinx." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart solo se genera en un directorio vacío. Por favor, especifique una nueva ruta raíz." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Variable de plantilla inválida: %s" @@ -1833,47 +1882,47 @@ msgstr "No puede utilizar a \"lineno-match\" con un conjunto desunido de \"líne msgid "Line spec %r: no lines pulled from include file %r" msgstr "Línea especifico %r: sin líneas tiradas desde el archivo incluido %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "patrón global toctree %r no coincide con ningún documento" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree contiene referencia al documento excluido %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree contiene referencias a documentos inexistentes %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "entrada duplicada encontrada en toctree: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor de la sección: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor del módulo: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Código del autor: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr ".. contenido de los reconocimientos no es una lista" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr ".. hlist contenido no es una lista" @@ -1888,82 +1937,10 @@ msgstr "\":file:\" La opción para la directiva csv-table ahora reconoce una rut msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Declaración de C duplicada, también definida en %s:%s.\nLa declaración es '.. c:%s:: %s'." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parámetros" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "Valores devueltos" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Devuelve" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tipo del valor devuelto" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "miembro" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variable" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "función" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "estructura" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "unión" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumeración" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipo" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "parámetro de función" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nuevo en la versión %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1975,346 +1952,423 @@ msgstr "Distinto en la versión %s" msgid "Deprecated since version %s" msgstr "Obsoleto desde la versión %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "citación duplicada %s, otra instancia en %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Citación [%s] no está referenciada." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Declaración de C++ duplicada, también definida en %s:%s.\nLa declaración es '.. cpp:%s:: %s'." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parametros de Plantilla" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Lanzamientos" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "clase" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "concepto" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "parámetro de plantilla" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (clase)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Lanzamientos" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Devuelve" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipo del valor devuelto" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "función" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "clase" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "duplicada %s descripción de %s, otra %s en %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "No válido math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Muestra" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (opción directiva)" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "directive-option" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rol" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "descripción duplicada de %s %s, otra instancia en %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Declaración de C duplicada, también definida en %s:%s.\nLa declaración es '.. c:%s:: %s'." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parámetros" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Valores devueltos" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "miembro" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variable" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "estructura" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "unión" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumeración" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipo" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "parámetro de función" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parametros de Plantilla" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Declaración de C++ duplicada, también definida en %s:%s.\nLa declaración es '.. cpp:%s:: %s'." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concepto" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "parámetro de plantilla" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (%s propiedad)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "excepción" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "propiedad" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directiva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (opción directiva)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rol)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directiva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "directive-option" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rol" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variables" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "descripción duplicada de %s %s, otra instancia en %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Muestra" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variables de entorno; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descripción de la opción con formato incorrecto %r, debe verse como \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" o \"+opt args\"" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "opción de línea de comando %s" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "opción de línea de comando" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "el término del glosario debe ir precedido de una línea vacía" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "los términos del glosario no deben estar separados por líneas vacías" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "el glosario parece estar mal formateado, verifique la sangría" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "termino de glosario" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "gramática simbólica" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "etiqueta de referencia" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variables de entorno" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opción de programa" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Búsqueda" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, otra instancia en %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicada %s descripción de %s, otra instancia en %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está deshabilitado. :numref: se ignora." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Error al crear una referencia cruzada. No se asigna ningún número: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "el enlace no tiene subtítulo: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "inválido numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "inválido numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "etiqueta indefinida: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "No se pudo crear una referencia cruzada. Un título o subtítulo no encontrado: %r" @@ -2331,35 +2385,35 @@ msgstr "configuración modificada" msgid "extensions changed" msgstr "extensiones modificadas" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "la versión del entorno de compilación no es actual" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "directorio fuente ha cambiado" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este entorno es incompatible con el generador seleccionado, elija otro directorio doctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "documento no está incluido en ningún toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "toctree auto referenciado encontrado. Ignorado." @@ -2383,39 +2437,39 @@ msgstr "tipo de entrada de índice desconocido %r" msgid "Symbols" msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "referencias circulares de toctree detectadas, ignorando: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree contiene una referencia al documento %r que no tiene título: no se generará ningún enlace" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "el árbol de la tabla de contenido contiene una referencia a un documento no incluido %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "archivo de imagen no legible: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "archivo de imagen %s no legible: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "el archivo de descarga no es legible: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s ya tiene asignados números de sección (¿número de árbol anidado?)" @@ -2425,7 +2479,7 @@ msgstr "%s ya tiene asignados números de sección (¿número de árbol anidado? msgid "Would create file %s." msgstr "Debería crear archivo %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2437,149 +2491,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nMire recursivamente en para módulos y paquetes de Python y cree\nun archivo reST con directivas automodule por paquete en el .\n\nLos s pueden ser patrones de archivo y/o directorio que serán\nexcluidos de la generación.\n\nNota: Por defecto, este script no sobrescribirá los archivos ya creados." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "ruta al módulo al documento" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "archivo de estilo fnmatch y/o patrones de directorio para excluir de la generación" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "directorio para colocar toda la salida" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "rofundidad máxima de submódulos para mostrar en la tabla de contenido (predeterminado: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "sobreescribir archivos existentes" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "seguir enlaces simbólicos. Potente cuando se combina con el paquete collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "ejecutar la rutina sin crear archivos" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "poner documentación para cada módulo en su propia página" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "incluir \"_private\" en módulos" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "nombre de archivo de la tabla de contenido (predeterminado: módulos)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "no crear un archivo de tabla de contenido" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "no cree encabezados para los paquetes de módulos/paquetes (por ejemplo, cuando las cadenas de documentación docstrings ya los contienen)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "poner la documentación del módulo antes de la documentación del submódulo" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpretar las rutas del módulo de acuerdo con la especificación de espacios de nombres implícitos en la PEP-0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "sufijo de archivo (por defecto: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "generar un proyecto completo con sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "agregue module_path al sys.path, que se usa cuando se da el parámetro --full" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "nombre del proyecto (predeterminado: nombre del módulo raíz)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "autor(es) del proyecto, utilizado cuando se da el parámetro --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "versión del proyecto, utilizado cuando se da el parámetro --full" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "lanzamiento del proyecto, utilizado cuando se da el parámetro --full, por defecto es --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "opciones de extensión" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s no es un directorio." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "expresiones regulares inválidas %r en %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Pruebas de cobertura en las fuentes terminadas, mira los resultados en %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "expresiones regulares inválidas %r en coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "api c indocumentado: %s [%s] en archivo %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "el módulo %s no podía ser importado: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "función python indocumentada: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "clase python indocumentada: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "método python indocumentado: %s :: %s :: %s" @@ -2603,24 +2657,24 @@ msgstr "'%s' no es una opción pyversion válida" msgid "invalid TestCode type" msgstr "tipo de TestCode inválido" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Prueba de doctests en las fuentes terminadas, mira los resultados en %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "sin código/salida en el bloque %s en %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "ignorando el código doctest no válido: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== duraciones de lectura más lentas =======================" @@ -2631,32 +2685,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "enlace codificado %r podría reemplazarse por un enlace externo (intente usar %r en su lugar)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Directiva Graphviz no puede tener tanto el contenido y un argumento de nombre de archivo" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Archivo externo Graphviz %r no encontrado o la lectura del mismo fallo" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorando la directiva \"graphviz\" sin contenido." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "comando dot %r no se puede ejecutar (necesarios para la salida de graphviz), Compruebe la configuración de graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2666,7 +2720,7 @@ msgid "" "%r" msgstr "dot salió con error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2676,27 +2730,27 @@ msgid "" "%r" msgstr "dot no produjo un archivo de salida:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "el valor del parámetro graphviz_output_format debe ser uno de 'png', 'svg', pero es %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "dot código %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[gráfica: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[gráfica]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2704,7 +2758,7 @@ msgid "" "Traceback: %s" msgstr "No se puede ejecutar el comando de conversión de imagen %r. 'sphinx.ext.imgconverter' requiere ImageMagick por defecto. Asegúrese de que esté instalado o configure la opción 'image_converter' a un comando de conversión personalizado.\n\nRastrear: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2714,173 +2768,178 @@ msgid "" "%r" msgstr "convert salió con error:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "el comando convert %r no puede ejecutar, compruebe el valor de configuración image_converter" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "comando LaTeX %r no se puede ejecutar (necesario para la visualización matemática), compruebe la configuración de imgmath_latex" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "comando %s %r no se puede ejecutar (necesario para la visualización matemática), verifique la configuración imgmath_%s" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "visualizar latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "en línea latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "el inventario intersphinx se ha movido: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "cargando inventario intersphinx desde %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontró algunos problemas con algunos de los inventarios, pero tenían alternativas de trabajo:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "no se pudo llegar a ninguno de los inventarios con los siguientes problemas:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "inventario para referencia cruzada externa no encontrado: %s" +msgid "inventory for external cross-reference not found: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "rol para referencia cruzada externa no encontrado: %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "%s externo: destino de referencia %s no encontrado: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "el identificador de intersphinx %r no es una cadena. Ignorado" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[fuente]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Por hacer" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "Marca TODO encontrada: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(La <> se encuentra en %s, línea %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "resaltando el código del módulo... " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Código de módulo" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Código fuente para %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Resumen: código de modulo" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "valor no válido para la opción de pedido de miembro: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "valor no válido para la opción class-doc-from: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "firma inválida para auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "error al formatear argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: no pudo determinar %s.%s (%r) para ser documentado, se planteó la siguiente excepción:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2888,112 +2947,112 @@ msgid "" "explicit module name)" msgstr "no sabe qué módulo importar para el autodocumento %r (intente colocar una directiva \"module\" o \"currentmodule\" en el documento o dar un nombre explícito al módulo)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "Se detecta un objeto simulado: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "error al formatear la firma para %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" en el nombre del automodule no tiene sentido" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "argumentos de firma o anotación de retorno dada para automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ debe ser una lista de cadenas, no %r (en el módulo %s) -- ignorando __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "atributo faltante mencionado en la :members: módulo %s, atributo %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Error al obtener una firma de función para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Error al obtener una firma de constructor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "falta el atributo %s en el objeto %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Error al obtener una firma de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Se encontraron __slots__ no válidas en %s. Ignorado." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Error al analizar un valor de argumento predeterminado para %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "Error al actualizar la firma para %r: parámetro no encontrado: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "Error al analizar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referencias autosummary excluidas documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: no se encontró el archivo stub %r. Verifique su configuración de autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un resumen automático con subtítulos requiere la opción :toctree: ignorado." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3001,26 +3060,26 @@ msgid "" "%s" msgstr "autosummary: no se pudo importar %s.\nPosibles pistas:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "fallo al analizar el nombre %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary genera archivos .rst internamente. Pero su source_suffix no contiene archivo .rst. Saltado." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3093,99 +3152,99 @@ msgid "" "%(default)s)" msgstr "documentar exactamente los miembros en module __all__ attribute. (por defecto: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumentos de palabras clave" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Ejemplo" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Ejemplos" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Notas" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Otros parámetros" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "Recibe" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Referencias" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Campos" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "conjunto de valores no válidos (falta la llave de cierre): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "conjunto de valor no válido (falta llave de apertura): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "literal de cadena con formato incorrecto (falta la comilla de cierre): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "literal de cadena con formato incorrecto (falta la comilla de apertura): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Atención" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Prudencia" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Peligro" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Consejo" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Ver también" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Truco" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Advertencia" @@ -3217,7 +3276,7 @@ msgid "Table of Contents" msgstr "Tabla de contenido" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Búsqueda" @@ -3350,34 +3409,22 @@ msgstr "Próximo tema" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor, active JavaScript para habilitar la funcionalidad\n de búsqueda." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "La búsqueda de varias palabras solo muestra coincidencias que contienen\n todas las palabras." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Resultados de la búsqueda" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de que todas las palabras estén correctamente escritas y que usted allá seleccionado las suficientes categorías." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Búsqueda rápida" @@ -3414,20 +3461,30 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Resultados de la búsqueda" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de que todas las palabras estén correctamente escritas y que usted allá seleccionado las suficientes categorías." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "Búsqueda finalizada, se encontraron ${resultCount} páginas que coinciden con la consulta de búsqueda." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Preparando búsqueda..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", en " @@ -3448,30 +3505,30 @@ msgstr "Expandir barra lateral" msgid "Contents" msgstr "Contenidos" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "Índice basado en 4 columnas encontrado. Puede ser un error de extensiones que usted usa: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Pie de página [%s] no está referenciado." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Pie de página [#] no está referenciado." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3483,13 +3540,13 @@ msgid "" "{1}" msgstr "referencias inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referencias de citas inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3516,90 +3573,90 @@ msgstr "%s:%s objetivo de referencia no encontrado: %s" msgid "%r reference target not found: %s" msgstr "%r objetivo de referencia no encontrado: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "No se pudo recuperar la imagen remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "No se pudo recuperar la imagen remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Formato de imagen desconocido: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres fuente no codificables, reemplazando con \"?\": %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "omitido" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "fallado" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "Problema en el dominio %s: se supone que el campo debe usar el rol '%s', pero ese rol no está en el dominio." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "directiva desconocida o nombre de rol: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "tipo de nodo desconocido: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "leyendo error: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "escribiendo error: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Formato de fecha inválido. Cite la cadena con comillas simples si desea generarla directamente: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contiene referencia al archivo inexistente %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "excepción al evaluar solamente la expresión directiva: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "rol por defecto %s no encontrado" @@ -3622,27 +3679,27 @@ msgstr "Cualquier ID no asignado para el nodo %s" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "No se pudo obtener el tamaño de la imagen. La opción :scale: se ignora." @@ -3659,13 +3716,13 @@ msgstr "demasiado grande :maxdepth:, ignorado." msgid "document title is not a single Text node" msgstr "título del documento no es un nodo de Texto único" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "no se encontró el nodo de título en la sección, tema, tabla, advertencia o barra lateral" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas a pie de página" @@ -3684,20 +3741,20 @@ msgstr "la unidad de dimensión %s no es válida. Ignorado." msgid "unknown index entry type %s found" msgstr "tipo de entrada de índice desconocido %s encontrado" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[imagen: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[imagen]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "subtítulo no dentro de una figura." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nodo no implementado: %r" diff --git a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo index 1a213b5ec02aaeb64bf7f46b60277287caaeca21..351293457a280399d342f1f987c9a611c9df3935 100644 GIT binary patch delta 30 lcmZ3)vWR6uGp~uRfr+l6iGq=_m67?z3B8Q0CVB>33;=&(2V4LE delta 30 lcmZ3)vWR6uGq16(frYN2xq_jIm8r$X3B8Q0MtX)^3;=)i2W0>N diff --git a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po index 858362ad3e9..3dfa5747acf 100644 --- a/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Colombia) (http://app.transifex.com/sphinx-doc/sphinx-1/language/es_CO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: es_CO\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index ce4890c09f65ef9e9216595ae5a32ad795e3767b..aa8b6ce23db67a8b92a84fc1496d7c7f24e59613 100644 GIT binary patch delta 6391 zcmYM&33QHE9>?*U$Re_cL{=m(5h0`vNrXf+5yUzrRcqU5=%`9NwjvBqQ9V6X$MUwS zWiX3$%#29-wp8gtIki-`VW^^XQ#G^`I+zaT`#blZGd=Ig=icXio_qiI|G)Qnoj&_i z@X4Qpyt8p3FB<+^8e~jc%#Tv<|Njk3Hs&(j;W!hEQ;dnmdJM%qSc3bo5KXEv_dqY~ zfb%c{*JE?sf_knVoi(%;h?=>PGKVbD;SHRZH$S*MD$@M>i&TkiDOX{Om^Qt zfqH(Wv(EW8YP@5Zgx_K^^P5{VwCF^ZPedjI^RN&#!8GiSbDdi;j{X;zi&u~#OnN(G zs<9Xoa3dfIoWR6;$f~i0!cvGx6^j zjyF*g2c=U+OhVm147Kv{NK(x-$Vt*WiLvaJLZOr$m0E38H^F^RC5!aslYvA@==!JQx32QI|SE3#aARn`v zKSg*36>u^)E6@(8mG(xJumXc|0+!=L?)o1vg#He^3wL+$>_9(oK`Xe1O5uN;u|%N( zJE8VSk?U8WGBv?ji(1G_s6e-3OFV+g)E8Ke-yz8~*&Xe8Lp&O~aSUp+O>tk$!W{Zf zq4q>QYM>L&uiW*^7{c{LHo|ypgIdTOY>mG~Wo9*MoK2__97HYD`;>+TzJUF(38!K~ zCu0WVCe&uSh>AQd%O0P;SWAC2Dnp;3YWfXo;H#)j7s0H`TqSe^et zG@5f^9BMOFV^^$24YUROVk2t8pO7+|X4$spS*QSeqXH;HjW^nTUxixO3>=5cP^J13 zM=-xBVm76AIcoF#71@90C@M2Qp$`+f*<;lc6~GcC%cjotKXUyh)HtbZAia|NU=hGStdfB6FITP$k=shwwP+ z{!O{YJclwC;zJ5Q7%N{G1P$PT>pF5zlKWbe{ng6_OQoqHEP1`s1?44 zQFs_N(Fx>ZLh|gUEJWQm99!a;Jo2x`6fP)$xyVL0OECrif;#8>QLoOgP^G$sylqW8 zj)rR92bJ=X7>ct{fz)C=K7%U7E6B%u#vf%k+$*p@yJ@Hk#aND&r~uZw?;B8o97VlS zFQEbm>1ij(z&QGas9(1sSc2843~fd&v=OO-*^4T**F=Ldnd_((W)Y@R)DL|)3^m~6 zn25_zrPzQPXbUQ1|G-vw3;97bEqR~IZm1OxMoqW~wI`M$^LgfsyWs{ZRXM%w<|xA! z^dH35_$VghLQKK6s8Teb0{#St<0(`ior~;(icsU+kIL9YEJF_yb^iC#(27o?Qg|Mf zs%x$vQfyzLNzP1EYV%OXZw4w8FQYcyVbor@j+!uqqtga^p`IIsoM^KKbD7_~LqnV9 zM@+z?(1yNW{7=xNH8YCvV=4OB)BqgM2(>t8~>FPhMYw^4g1oiyk)^uTN!ha|^5 zjVjUm7>&Q6Hf@B*Vb`XKM?FxA+Dy~19d1Ca^eyD&XU;j}`rDQD$26{wM+I1mA?QaP z*LA4OZAS(8CXT=(*c-jJ6tI}aXzYS(P&e*DmEdFN_o!3`4YZpw33XpSDsvThILMeP zjKb_e_MKli*k)=UYULjxx0usd%KRo{2tUDGn2hal8%E&A&d)KF{@17gE~56p9aMm^ zL+v^5f?9EZ)Sj4t8t*aG{m)}0{th+%R_vtnAE2QZ#wq7NQ7gKQdN6UA-BekaPQM(Z za1ts5(=i*Dx_&*X)_a{dQJbwhZ>LNwLj^hoYnb0GqM=AHVGE4@m5nqRwUUmg%J2x_w)!w|eWg8VC0H@I*&=8m+roQPrc z7ob+Y1Y_|z)Hz;{+C$;2E^t8+ z1>eUn9)_cC9EI9^HK+k+q5|583a}29!EM+P_oLn$7f~6yjmk{qD0^x;qQ)&l%{$Jc zkwIfN#^5?sZC=Fz7(l%TZo2Q2?zg4sgqonIvmA5ik8mz>*Z+np3kTc^PfdS4-}y$7>Fr27WLpvRH_$X96sx=uSW&;CsZchcHdvceEMM%Y{rVQ zkp6wB1uaKqd=n<<{BNb9iQYv;d=M4L2_#GABJwf)9J8&ReC4m)GigZ2effZga% zL|tEjRLAVVt{DB0J!QR7r)4U7chT_E&>L(Y>c-2cKvJsg#GSE*{?n*{|Ah*8#zcE+ z=3^WB9=65x$Pb)(6B)|r9KmAx)syTw z--yc00aQs&pa%X1wFfSvYJ0>V6UL&+lPAY_+*x&m7e8-YIGUPF!K?+ z2d1DlXbC1p8EhZ@eV4ZnZLHB7=_B{V$}6*n1rV>1Fv~BLTMyVu@j}C z0_uhuxEOojEKJ2ZREqav8lFX+<6GDcD<8H0AeoNo^jD)MY{X7@$n}3hZE~;qR6Ae? zRL$-|rFaQy#V??C^A-%lQ`i&FqXJ5P%4%*>buas1lW#b(n~oP=W72J$D@Q@G7b# zSu^bQQdD3MVIQ21UM`JoG_)JfqRw&fO#5IOX3;N1rK}27(??KmGS6N2qXK%_xfxaS zS1|$`Fc#m!L3jiQV(VGte+Z2Uv+Trms1@x)J@`3B;@7A^e{|PC(T!JViQ z>~Z}sP{;2aDidaoT}TA>pqqf&D}(g^U+$(c5p!@Amf|~DfOoJJ7R)n`u$57+`fSNFMo;{Ysu`B&YQKj}?prP6|pdQ?bO5IV^#K&yJ z20n&K7(U-_-gIXvDuWMW2VCI#8&R2g6HSYXz@6k5qx^N5`GKpM^P~OS@(u^C=WmMg z?=P$IFYebX5K+FTnLoZ_RA5a-Sa5WHPHuiq_k3TEyrLe3fh~h41vSgRD>o21bak}9 te(bP7#<&+_{MV=a99S}SNQ^&t-dz8IdBuSNwP%|7s~0{JxV11c_x19(s92!1U@7XG_nf`| z`~Ux+1It%0bolPtq{O-2o$fdMb8iP@2I7WP&A$HUZ<)sYiRqUZ!4I;G>48hKjp>X* zycQ!^hCjoJ_y^3z`~k*v#R^QpD%5jJu#Yhb6JU_eg=X)9S&tdaAH-gG5YzBUwD2X= z{hwfWOd)D*&=)NngnE9W?*iWj)OvSff4mZNQ!86zme}_8xJE)p=AgU>tj1@QwX&bX072rP9euq(+I6j#CYvC8Ta239V z+HfHM8G;j057r<*nR* z?28IuAZoo*)bHa_2b+b9*xxK=pjthSbFtqDFSWI(X1WV$X!8&%GtZ%gA7cfk(u@PXP@mp2 z*b~qDCXMw1>y5k^W)SiRqM3^N9^8uAxEgbCJ8GRn*cV?xmEuFxYnhf9=S9{R`*2|} zszzgxJxv2<;E#|$kIZ3z{xVKx{wGubr97nHD^P*dp}q%qp#s>6TK_2a#uu?aCf;Fi zErTynDVxA|SSOx^l*=qe^}t4?+-584gvU`C`#oCt9%{jqtG$3NREf$^>r6sr>^9U} zupJ3FVfJ_f^AzgDZ=*KM8t*mBAk>Dj#8EC_w;{ZH^{A)hqKYS8Qak=;4B2?3?$9}jOufU(+Ksgwxy^P&p^GVOMD&Q zAnJ9EqDr_5weebxDb;p+0bn6AUZ{b*P2zM!hEA$3kpF%4zGchLf<%4aTsPnT~^TGj_%OzDKaL z-v1{VD1eiw=J zsOLV%0qk$O(W*H(3{!C$Dg*OSsjl_sTTngF>iatOWZsv&t8_zAC7Ovrv{8Yc!fyC6 zD$p-54U=!A{>cn77|_6G5Ng3{9F7qzz#XU)oxmRW0cwHI{ohk6d6k%tLT%up0*T{T z+<MP=fRO7gFbKI1|PTJyXN6rfHt4poZ9n2T{t$L-h=_n@BJi)z|mqMG$( zRHk0TE3wafuauLq3-cwYgFExde=i0NTiQmGGMB_+7@CF(=j*_mtsHM zf;!PpQK>$L>YZm%0lkCtrTHW3zOn`0mvv5pfflSnMf5FHgm+^GZpNYbQ|yZ;Q9be| zDl>mZy*0@Ty@iLOHogXj;6hZXR-sC>9{DtwZK&@<;&uOqi>TUky~*1k%Xb(SbA7b0 z?O)%7D#iCv&+SFM??*8oFQN`KWD$RJ#v;_)u@=<}>#-mEo9zr#>%IOBXR$x?bEt?v z!LgWhGYyGXA#aX(7$@OH)Y~)R7VqS@;5Oz>H~@Pr_BJfQ4CZD2e0ICke=!5qemQ31 z8q~?Yhf4i!|N1FZZQt{MKaUEq(>J{o_d+#e4stS+k1Az3_Qt8G`)@+6AHXd3H%$!m z;AT{9A3#0u6aV^QRA9$ZnRw0rJ$;GyH=?1aj4i@4ybX1r-KdoR8Wqq}sC|Bq>WOzT zp-3(;pj;;TR%6JTS&Gx~2&y!lmU=ZUM17Fv;RsxVs`bN2ADXjRghjUZ+AT!AJ?pRp z_o1GD19e~bYU-~@%BsDMr(ux!k5HNES>r{#3H2InN7eKPI1mrxH}GZT3??h!-QSGu zZxbqGccU_T41b9)qV8Ysu#1}IeaGwGwYA=Re*~48w@@XyfJ$A`GOq`^V;ANbsNb)^ zjaZ1~cnF8%r>Ko{>b&Pip$8J>EPz#sfD6GY7d;pdD zpW`5W0rh@=j91`P>StjM=HQ*E4O?*-9`WaIAqP&FFBoXSehpqNN1;+5M}3;t;TYVG zO8N6R4$qK^jCd>HC28Hu_+1C`MLrr;X97T2LN^&3o6mwmv%;=)DD#Q|ZjhUKUY zS0gc+JFx`+f~9CRdL^hti+LR?lXqh;+=TjM??PqjAP&W|sQW(0N_F|)8K_ArDY$NQ zup8cq%FHI5ijSabe%}8*CE|V2`d}*83sI>q!*ra3z0gKIAHh64gcI-_CMGk;j(UGl zSb`SwwWwPD5cPT;^G%9*3r$63<{s21bt@|H-KgiD#?kmLswCNQ@A_y|U^n75SQ97z zBN^=Cg1Yeq)cbt_^AGfhhilv!XIJ}+>cuL3Dk}6q87Y>S(tje*IdI;y)prnk!h&=ZpKb{ z8>%!-{``K_Yq>J%QCEJyr#~o35ROkWmc0Nj637`=|I1{)ji6spc{=@;aV%& z=+wBiZjDvz2A!xC3tJJVI_?GoCDx2(p>V_rSZ=LVY+G*ht9zY5%jQuh6WX!Sj@ZGV z6SP*iu{vwE)ffraIMFBzt*CP%j@1~BM&0V5W97H+V+XxBtXw-D3+M7wFla@c7*Dcs zO=G;cCL9mN3QT(hPDEGZQJxMswRSuh8*kOc8iL->2W}a?E49dq)j1806|x%$G%sS+ z@_fL`Z*bW+w9NapL@Ah9(DK>Da7AsHMe7`^#;&R32`AL#M#7;6Cls@69t?zQViCvj zlkxSobE@Xgt(re&M&*?y{w>jh7JE|pY@1_yNA>a?kJvGlK-skNb*-dvWr30x4A{SPjPpj$Baa2j^f&A;Y^hmFYNBuqvhd33jcBtxx{JHUXAYN@Xw6(Ui zl7V=DDD40(7LPWyUt`eTe4Q3-ODn(Zwp!Z_x&gZ5Ao_I1J}oDxNv;svJOj>cm|(4-wRV)k;|%5SpWdY4{v z{l+|SuTzmWHs&}D>{(B>h&SQb%{b8f~s0r6RPa`LcfGEcM|!`(Kx`Xi3}R zK$rLA`q;USM-r`R$tzaZLKlK{QC`GH6lN^)HW|0`!B(el&?~1wH*ltqRt4* Wc0;`7>c?ojiTBYB95~sWn)DAa`@?zw diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 1f89fead6d6..e73f4dcbca2 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Ivar Smolin , 2013-2022\n" "Language-Team: Estonian (http://app.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,104 +41,104 @@ msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed" msgid "Running Sphinx v%s" msgstr "Sphinx v%s käitamine" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "väljundkataloogi loomine" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "valmis" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "serialiseeritud keskkonna laadimine" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "vigane arv %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Puudub määratud seadistusväärtus: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Sinu seadistusfailis on süntaksi viga: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Seadistusfail (või mõni selle poolt imporditud moodulitest) kutsus välja sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,291 +235,328 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Sündmus %r on juba olemas" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Tundmatu sündmuse nimi: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "needs_extensions sätted nõuavad laiendust %s, kuid see pole laaditud." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "See projekt vajab laiendust %s vähemalt versiooniga %s ja seetõttu pole projekti võimalik laaditud versiooniga (%s) ehitada." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Ehitaja klassil %s puudub atribuut \"name\"" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Ehitaja %r on juba olemas (moodulis %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Ehitajat nimega %s pole registreeritud" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domeen %s on juba registreeritud" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domeen %s pole veel registreeritud" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser on %r jaoks juba registreeritud" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Lähtekoodi analüsaatorit pole %s jaoks registreeritud" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Algne erind:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Laiendust %s pole võimalik importida" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "erindil %r puudub funktsioon setup(); kas see on päriselt Sphinxi laiendusmoodul?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Pythoni täiustusettepanekud; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "teemal %r puudub \"theme\" säte" +msgid "unsupported theme option %r given" +msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:206 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "teemal %r puudub \"inherit\" säte" +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "fail %r teemarajal pole korrektni zip-fail või ei sisalda see teemat" -#: sphinx/theming.py:85 +#: sphinx/theming.py:226 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:259 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:262 #, python-format -msgid "unsupported theme option %r given" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:269 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "fail %r teemarajal pole korrektni zip-fail või ei sisalda see teemat" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "teemat nimega %r ei leitud (kas theme.conf on puudu?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -530,8 +572,8 @@ msgstr "" msgid "building [mo]: " msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "väljundi kirjutamine... " @@ -580,7 +622,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "%d lähtefaili sihtfailid on aegunud" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "ehitamine [%s]: " @@ -589,50 +631,50 @@ msgstr "ehitamine [%s]: " msgid "looking for now-outdated files... " msgstr "praeguseks aegunud failide otsimine... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "leitud %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "ei leitud" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "kooskõla kontrollimine" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "aegunud sihtfaile pole" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "keskkonna uuendamine:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "lisatud %s, muudetud %s, eemaldatud %s" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "lähtefailide lugemine..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -641,36 +683,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "kujutiste kopeerimine... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "kujutise faili %r pole võimalik kopeerida: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "kujutise faili %r pole võimalik kirjutada: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -678,470 +720,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "faili %s kirjutamine..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Ülevaatefail asub kataloogis %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "versioonis %s pole muutusi." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "kokkuvõttefaili kirjutamine..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Sisseehitatud" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Mooduli tase" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "lähtefailide kopeerimine..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "vigane css_file: %r, eiratakse" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Sõnumikataloogid asuvad kataloogis %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "%d mallifaili sihtfailid" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "mallide lugemine... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "sõnumikataloogide kirjutamine... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Otsi vigu ülalolevast väljundist või failist %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Juhendi lehed asuvad kataloogis %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "seadistusparameetrit \"man_pages\" ei leitud, juhendi lehti ei kirjutata" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "seadistusparameeter \"man_pages\" viitab tundmatule dokumendile %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML-leht asub kataloogis %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "täiendavate failide kirjutamine" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfo failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "seadistusparameetrit \"texinfo_documents\" ei leitud, dokumente ei kirjutata" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "seadistusparameeter \"texinfo_documents\" viitab tundmatule dokumendile %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "viidete lahendamine..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (pealkirjas " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "Texinfo tugifailide kopeerimine" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "viga faili Makefile kirjutamisel: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Tekstifailid asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "viga faili %s kirjutamisel: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XML-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "PseudoXML-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML-lehed asuvad kataloogis %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Viga ehitamise infofaili lugemisel: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Üldindeks" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "järgmine" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "indeksite genereerimine" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "täiendavate lehtede kirjutamine" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "allalaaditavate failide kopeerimine..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "staatilist faili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "lisafailide kopeerimine" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "lisafaili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Viga ehitamise infofaili kirjutamisel: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "lehe %s renderdamisel tekkis Unicode viga. Palun veendu, et kõik mitte-ASCII sisuga seadistusparameetrid on kirjeldatud Unicode stringidena." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "otsinguindeksi tõmmise kirjutamine keelele %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "vigane js_file: %r, eiratakse" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path kirjet %r pole olemas" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path kirje %r asub väljaspool väljundkataloogi" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "logofaili %r pole olemas" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon faili %r pole olemas" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nNende jooksutamiseks läbi (pdf)latex programmi käivita selles kataloogis\n'make' (selle automaatseks tegemiseks kasuta `make latexpdf')." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "seadistusparameetrit \"latex_documents\" ei leitud, dokumente ei kirjutata" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Redaktsioon" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "TeX-i tugifailide kopeerimine" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "TeX-i tugifailide kopeerimine..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "lisafailide kopeerimine" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1156,15 +1198,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1223,8 +1265,8 @@ msgstr "Vearaportit on võimalik esitada träkkeris aadressil ." msgstr "" @@ -1256,257 +1298,264 @@ msgid "path to output directory" msgstr "väljundkataloogi rada" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "määratud failide uuestiehitamine. Võtme -a korral eiratakse" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "üldsuvandid" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "kasutatav ehitaja (vaikimisi: html)" +msgid "builder to use (default: 'html')" +msgstr "" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "kõikide failide kirjutamine (vaikimisi kirjutatakse ainult uued ja muutunud failid)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "salvestatud keskkonda ei kasutata, alati loetakse kõik failid" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "puhverdatud keskkonna ja dokumendipuu rada (vaikimisi: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "rööbiti ehitamine N protsessiga, kui võimalik (eriväärtus \"auto\" määrab N väärtuseks protsessorite arvu)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "seadistusfaili (conf.py) asukoha rada (vaikimisi sama mis SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "seadistusfaili ei kasutata üldse, ainult -D suvandid" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "seadistusfailis määratud väärtuse asendamine" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "väärtuse edastamine HTML-mallidesse" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:182 +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "konsooliväljundi suvandid" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "hoiatuste (ja vigade) kirjutamine määratud faili" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "hoiatuste muutmine vigadeks" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "erindi korral täieliku tagasijälituse näitamine" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "erindi korral Pdb käivitamine" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "suvandit -a ja failinimesid pole võimalik kombineerida" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "hoiatuste faili %r pole võimalik avada: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D suvandi argument peab olema vormingus nimi=väärtus" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A suvandi argument peab olema vormingus nimi=väärtus" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "moodulite dokumentatsioonistringide automaatne lisamine" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "dokumentatsioonistringides olevate koodijuppide automaattestimine" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "eri projektide Sphinx-dokumentatsiooni omavaheline viitamine" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "\"teha\" sissekannete kirjutamine, mida võib ehitamisega peita või näidata" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "dokumentatsiooni katvuse kontrollid" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "matemaatika kaasamine, mis renderdatakse PNG- või SVG-kujutisteks" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "matemaatika kaasamine, mis renderdatakse veebisirvikus MathJax-i abil" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "sisu tingimuslik kaasamine seadistusparameetrite alusel" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "dokumenteeritud Python-objektide lähtekoodile viitamise kaasamine" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr ".nojekyll faili loomine dokumentide avaldamiseks GitHub-i lehtedel" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Palun sisesta mingi tekst." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Palun sisesta kas 'y' või 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Tere tulemast kasutama Sphinx %s lendstardi utiliiti." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Palun sisesta väärtused järgnevate sätete jaoks (kandiliste sulgude vahel\nvõib olla vaikeväärtus, millega nõustumiseks vajuta lihtsalt Enter)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Valitud juurkataloog: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Viga: valitud juurkataloogist leiti olemasolev conf.py." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart ei kirjuta olemasolevaid Sphinx-projekte üle." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Palun sisesta uus juurkataloog (või vajuta Enter lõpetamiseks)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Sphinx'i väljundi ehitamise kataloogi asetamiseks on kaks valikut.\nVõid kasutada kataloogi \"_build\" juurkataloogis või eraldiseisvaid \n\"source\" ja \"build\" katalooge juurkataloogis." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Lähtekoodi ja ehitamise kataloogide eraldamine (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Mallide ja staatilise kataloogi nime eesliide" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Projekti nimi" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Autorite nimed" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Projekti versioon" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Projekti väljalase" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Projekti keel" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Lähtefaili järelliide" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Sinu põhidokumendi nimi (ilma järelliiteta)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Viga: valitud juurkataloogist leiti peafail %s." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart ei kirjuta olemasolevat faili üle." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Palun sisesta uus failinimi või nimeta olemasolev fail ümber ja vajuta Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Märkus: imgmath ja mathjax ei saa korraga lubatud olla. imgmath eemaldati valikust." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Kas luua Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Kas luua Windowsi käsufail? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Faili %s loomine." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Fail %s on juba olemas ja jäetakse vahele." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Lõpetamine: Algne kataloogistruktuur on loodud." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Sa peaks nüüd asustama oma peafaili %s ja looma ülejäänud dokumentatsiooni\nlähtefailid. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Dokumentide ehitamiseks kasuta Makefile, näiteks:\n make ehitaja" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Dokumentide ehitamiseks kasuta käsku sphinx-build, näiteks:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "kus \"ehitaja\" on üks toetatud ehitajatest, nt. html, latex või linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nSphinx-projekti jaoks vajalike failide genereerimine.\n\nsphinx-quickstart on interaktiivne tööriist, mis küsib mõned küsimused Sinu\nprojekti kohta ja seepeale genereerib täieliku dokumentatsioonikataloogi ning\nnäidis-Makefile kasutamiseks koos sphinx-buildiga.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "vaikne režiim" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Struktuuri suvandid" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "kasutamise korral eraldatakse lähtefailide ja ehitamise kataloogid" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Projekti põhisuvandid" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "projekti nimi" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "autorite nimed" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "projekti versioon" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "projekti väljalase" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "dokumendi keel" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "lähtefaili järelliide" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "põhidokumendi nimi" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Laienduste suvandid" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "laienduse %s lubamine" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "suvaliste laienduste määramine" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefile ja Batchfile loomine" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "makefile loomine" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "makefile loomata jätmine" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "batchfile loomine" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "batchfile loomata jätmine" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Projekti loomine mallist" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "mallifailide kataloog" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "malli muutuja kirjeldamine" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Vigane mallimuutuja: %s" @@ -1828,47 +1877,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Sektsiooni autor: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Mooduli autor: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Koodi autor: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1883,82 +1932,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parameetrid" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Tagastab" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tagastustüüp" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "liige" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "muutuja" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funktsioon" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "loend" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tüüp" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "funktsiooni parameeter" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Uus versioonis %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "Muudetud versioonis %s" msgid "Deprecated since version %s" msgstr "Iganenud alates versioonist %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Malli parameetrid" - -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klass" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumendid" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Tagastab" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tagastustüüp" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funktsioon" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klass" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribuut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "moodul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "võrrandil %s on topeltsilt, teine instants on %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Vigane math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Muutujad" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktiiv)" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (roll)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktiiv" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "roll" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parameetrid" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "liige" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "muutuja" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "loend" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tüüp" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "funktsiooni parameeter" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Malli parameetrid" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "erind" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (iganenud)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktiiv)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (roll)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktiiv" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "roll" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Muutujad" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "keskkonnamuutuja; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s käsureasuvand" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "käsureasuvand" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "sõnastiku termin" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammatika märk" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "viite silt" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "keskkonnamuutuja" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programmi suvand" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Mooduli indeks" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Otsinguleht" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "vigane numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "vigane numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2326,35 +2380,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "See keskkond pole valitud ehitajaga ühilduv, palun vali mõni teine dokumendipuu kataloog." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "dokument pole ühegi sisukorrapuu osa" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2378,39 +2432,39 @@ msgstr "" msgid "Symbols" msgstr "Sümbolid" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "kujutise fail pole loetav: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "kujutise fail %s pole loetav: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,7 +2474,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "laienduse suvandid" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s pole kataloog." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Lähtefailide katvustestimine on lõppenud, vaata tulemusi failist %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2598,24 +2652,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "vigane TestCode tüüp" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Lähtefailide doctest-testimine on lõppenud, vaata tulemusi failist %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "vigase doctest koodi eiramine: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz direktiivil ei tohi samaaegselt olla argumendid content ja filename" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Välist Graphviz-faili %r ei leitud või esines tõrge selle lugemisel" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ilma sisuta \"graphviz\" direktiivi eiramine." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot käsku %r pole võimalik käivitada (vajalik graphvizi väljundi jaoks), kontrolli graphviz_dot sätteid" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format peab olema kas 'png' või 'svg', kuid mitte %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[joonis: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[joonis]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "teisendamise käsku %r pole võimalik käivitada, kontrolli image_converter sätteid" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[lähtekood]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Teha" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "Leitud TEHA kirje: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> asub failis %s, real %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "algne kirje" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumentatsioon]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Mooduli kood" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s lähtekood

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Ülevaade: mooduli kood" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Kõik lähtekoodiga moodulid

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,25 +3055,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Võtmesõnadega argumendid" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Näide" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Näited" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Märkused" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Tähelepanu" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Ettevaatust" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Oht" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Viga" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Tähtis" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Märkus" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Vaata ka" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Nõuanne" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Hoiatus" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "Sisukorratabel" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Otsing" @@ -3345,34 +3404,22 @@ msgstr "Järgmine teema" msgid "next chapter" msgstr "järgmine jaotis" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Otsingu võimaldamiseks tuleb aktiveerida JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "otsi" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Otsingu tulemused" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik sisestatud sõnad on õigesti kirjutatud ja sa oled valinud piisavalt kategooriaid." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Kiirotsing" @@ -3409,20 +3456,30 @@ msgstr "C API muutused" msgid "Other changes" msgstr "Ülejäänud muutused" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Otsingu tulemused" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik sisestatud sõnad on õigesti kirjutatud ja sa oled valinud piisavalt kategooriaid." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Otsimine" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Otsingu ettevalmistamine..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3443,30 +3500,30 @@ msgstr "Näita külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Tundmatu pildivorming: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "viga lugemisel: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "viga kirjutamisel: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3617,27 +3674,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3654,13 +3711,13 @@ msgstr ":maxdepth: on liiga suur ja seda eiratakse." msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Joonealused märkused" @@ -3679,20 +3736,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[pilt: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[pilt]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 4fb8171aedc10d49bf0384dc4083c81dcbe4f5f3..9a39b7a1539ccb25b76f79c926f0c1786ee01f29 100644 GIT binary patch delta 2094 zcmYM!eQ1?c9Ki8&yPI>b-Z}5)){A$}vC^FDda+Qr)4uj>0O3q{v&w7ku0$ONGOYCC`c>HVkAyvP-HEt?{^(&JbOORd7g95?{|LBdG3XL zIiGyLu;Put-}C%m!~b7tTmSz}R)tVc^E<4>i&%{_u|11Tv{Um#Xv8dLunTi|OT6EQ zwX}Dj<9A_m2uXN>3kU4O7W@$F@Dp_6udoNt6C)yCb8|f1Iu!xVLiSI{p z3`fv$WAXl%m?3`nmWwtXOrsN2)%-Vc2ItXkLypkS$pmghE3pY1@GfL%cnDch7(fFL zqYK!JSK<4yJ&F~y$FQ3CVVnym{0zj1IUmt z6iv{8ub_#Q(1pH(i2)CC;ec`M#gpjDYKXE7ThT;{XyAJ|S(!)B(msw134^iyTzvi_ zF5>>n@%g*xyob?BepE;OefMX$VMbH2<7Kp@vuL17(sp0gp)1Lt&$DO(OVEB@vE7Z% zw+64p^*Hy6&_oB&ia%XX{fQBt<%YX|1Pw5XW_}14u6@j(ZHwC0Y61AqY2ES<7)W1 zGhho6GhBy0UyYW&7k!2I#`cqFVo9{rO#LnWd)#mZhtPn>(EFdFCHw*nbOxPZGCrS1 z`~QZPJVo~QZ$~S(0v)#=9k&tvJ=hxW54BK#JMQKNM<{V}!Vk~{%INd)=mh!>f5v4v zjRt6BnFd~rK3^JLj?R;h&(|UQF>Hw5m&6V`(2@;BN6@{n52f7_!&{o8M#^~7NA==|5x<9X<<`bO)8(#gZ^gfJiM5UZ delta 2131 zcmYM!Z)lZO9Ki82@7k_j*WDl6nmW2o$NIOmdu?2?VYvt^QhZUikn%1Zc#{_0sS{@2 zilRS+8RUz|z)``nh}NYSfo5;UL?q}%QKU0`H(D{4p=2-me&>P4v*+`i=Q-#6e&_d` z=T>sFx$;b7_0hoJi~O(Vzq;Di|9^9}A=J_Q18=}0B*V`#0*>Jl{4%yHXpyIJDe=QOE}ZZuG{f`J1$2TWb-NW;V;VQ271|oxJCGyniT6j5 zq2X2ZmAn(%<7nW|aj`O3cEzW;Fz^|4;0*TTEV{zGh_)8*MH4EZ3GC%$gdH}x_!Uj17AV|E}*4N63qqFq4Rg43(ceRJ%}yD4_ml!;1F_zF-`_P65C&)8BZf~ho6zx z8s^XvUqcg4GKtTd&_JDNC3?{W`_TT6qMQ6lEW48ZTx`HsVuw@MLHjKFlRS?mkmTph z{;kmtG?6Si@%?DPEl5t`vG}}*zJdejt9&cAKWe7_X7)8VbP9b1KcXv`K?Bak`&ZFY zR*{u~Qs}rwbX+^y|4y{@d9?o%Xk`Y`ar@A52d%$93~$E=Ct}A*2Qd zAzH(7e3vV6Ew-ZpHlu;J#^(dk0y@v``22-37i`!t7Cjt0jH4wx5j~0SiSLoO5$4fN zR>KZltOWXd(1-@;M(53=ukI1F|Bm>)fFX0+uF7w<*`tGmCa|e_iX50Un!^eRV8xW*~*pre-cgoL#0x2kgl0$hDv)GHaJ|FU-3Zo Ee?+vqoB#j- diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index b88884a4366..2ec3332d2bd 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Asier Iturralde Sarasola , 2018\n" "Language-Team: Basque (http://app.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Hobekuntza Proposamena; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modulu maila" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (hemen: " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%Y %b %d" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indize orokorra" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indizea" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "aurrekoa" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indizea" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Argitalpena" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Atalaren egilea: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Moduluaren egilea: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Kodearen egilea: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Egilea:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,82 +1930,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametroak" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Itzultzen du" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Itzulketa mota" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "partaidea" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "aldagaia" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funtzioa" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makroa" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "mota" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Berria %s bertsioan" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "%s bertsioan aldatuta" msgid "Deprecated since version %s" msgstr "%s bertsiotik aurrera zaharkituta" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Jaurtitzen du" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasea" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasea)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumentuak" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Jaurtitzen du" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Itzultzen du" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Itzulketa mota" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funtzioa" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasea" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atributua" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modulua" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Aldagaiak" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Goratzen du" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rola)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rola" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametroak" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "partaidea" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "aldagaia" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makroa" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "mota" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "salbuespena" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (zaharkitua)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rola)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rola" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Aldagaiak" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Goratzen du" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "inguruneko aldagaia; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "glosarioko terminoa" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "gramatikako token-a" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "erreferentzia etiketa" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "inguruneko aldagaia" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programako aukera" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Moduluen indizea" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Bilaketa orria" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[iturburua]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Egitekoa" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "jatorrizko sarrera" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumentazioa]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Moduluko kodea" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s(r)en iturburu kodea

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Gainbegirada: moduluko kodea" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Kodea eskuragarri duten modulu guztiak

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Adi" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Kontuz" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Arriskua" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Errorea" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Argibidea" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Garrantzitsua" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Oharra" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Ikusi baita ere" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Iradokizuna" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Kontuz" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Bilatu" @@ -3343,34 +3402,22 @@ msgstr "Hurrengo gaia" msgid "next chapter" msgstr "hurrengo kapitulua" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "bilatu" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Bilaketa emaitzak" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Bilaketa azkarra" @@ -3407,20 +3454,30 @@ msgstr "C API aldaketak" msgid "Other changes" msgstr "Beste aldaketak" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Bilaketa emaitzak" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3441,30 +3498,30 @@ msgstr "Alboko barra luzatu" msgid "Contents" msgstr "Edukiak" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Oin-oharrak" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[irudia]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 68e026b8d4de3575dc36d397ce8c58da42b4f4bf..d48898df351685dc760333607101ae9ec1dc23d5 100644 GIT binary patch delta 11411 zcmYM)d3?=R{>Sn24G9s6M96Bnu_O`+A&D(wUt-^PBDP8_v9zeI7p1gz8I4j@Gab}c zf@pPAm1!+)wbjnFO6d=!wT!ODp!0g)^L;#i^T#~T=X<})IiK@6=X-DJ)^GmXuljp0 zS1!BW@V~=;##F;|RTcgJ|K`;<<^{)?`M8>M%BC1|hmZf#(3p-KUzBRhbmEU188Znp z8ygdhJJ25wV-miLtMCWR!kKBtG&RO+4${cxz-?@e8R^E%OOVut4o%{L1mgK)42bOa{9>f}W z30vbM)P*gn7!_4VjKhA&;LHqEP3%Qw-~y^+-y&sUent-_@Kjx&jhcdi7=zH%fxjZDJo*c+JzQ-BfpH&oI79sA-HRL!KdF(v>zVg>Auu{g-} zX)g^uXf^7>%b1IesGv%?4&(84)ZCuN4)`f%W0iKsbi)xCg*#E1IDs0_8KiE_7pU3_ zY;UKeI;w--WEx6kDA9ExMmACF-< zJc-G84kJkAf3OO1Xm5LcT?{5}g1T=9ERT~>8J&rG@CuB_qTb|RMRtq>`RMeq8JLJ< z*K9$p);^_$8S&<-o*g?FKT3d{q2o|P$R2`%2WbsDjK?RCaUA@QO_HLy3b56jVd(e zqb^v7A-Dy#QS8A$JdKoz`2zKzngi^ElTaPWM6HevSRaR>?za>tVj;4ZnLkk-Xf@Cd z)Z2$f3UfIF!}y?hkR8DxtU~;E)B`?8eSQ&@kvpg=b_Uy88HP#3hcOMWVneLTN%gQJ zHoyX8w#{aos`Y=DhEg+EE3md`nyEo5q zbJ^Dw<4k-XHOI|H8B+#ZqgGdY^k6oo@qCj{BLX+0=KLTk1Lsi>`~_QL{n0k%d8nE= zfhx9hsAYNqwLHH;ReQNHw)&$`9ch54F#}1u`4hb_(HKJab>THs2g1m+E=WNYQ99~D zZQMB9jr*f&V>oIm#^G{2h}wACJY|=20qQ>6P&Ks&tK*5M$iJ%b3J28VU$8lr9dF;y ztxzK!f?9rKP#v9$jd3$(;CW=4O+X%-7>+>|-G1zh-=H2`E8k|cDOM$(l287d(OAL( zO~Ek?#4oWfeuwI*{{*{X)OJlnji^1wV=t_OGcg)Bp{_fGG57`6#JkuQLnhiH?(LBxccW_NAU46L8$Yl zp)#`yqqP2a)6mFIp+<5IRTB>|5`(7MOw>lrX*0~iQ5cF_u@b(8sdyZ<%MkykLs!4({{ajP*c(tQ*a=vgNsp_coiFA3F-mY zQAHN|j9n%1s17zn)l4piY5gyyp^?3U8p#P%sy=tUhbqR3Gwcr77`G8`z;tXe(~fuw z>iTDJ2rfp=^<`{;F|%x@yCA7IdFWMjE~KFoUPayTEY?T!tc{aV9USGxFQKOFJq*Xo zsD0yS9E>5e`PqfzQB!dMHGopAfS0fe-keSTqi8(lfF2kz$J!2~i3?E6W*KUVc3?9+ zfIaXhBnhVZT>Em`hn0!n#{j&5F?bOp@ptqszj?MJz2}jCjbs=Hy5Jnt2`5n(2F$l} z7KahUeNn3;AA90{ERW_n``|#-6jVcHG}%2q43*ge48~$i#{FIzX*4doA5^A8S;QW! zhB=skb5X@pjGBrIsA7AJs_uph><7gH`dLSRL=61{Ac|cDNog#a=U* zhI%?3mEyIi<*@_f@KaQ6+(+HG`VzbRI=jw5onMR{@eEeP&=>47td32Iv#}N~KxMEP zW3~Rz(NGU>`VKJXOYMoZ(4XTSQN_~@HHTwdH=wHcV~oe|F%tuq+2ZTy+8y=aey9P> z#BAJv0X*MarBNGiVmYk%qW!^91v7|;xbbS#^0|Oz@jKK=uc1bMAKPKmmu!*F!MemJ zP^;-C>N$SPt?}qp6?UbeBAJC9un^VLe_;iDh`P{!g-u-|D(;IRIMY481ht&^qB{5? zYPp_65BjgPnTSUfW0#fg`X9>yrE)%MLs^IA@oyN4`%oh}j=^{X_26GI8OyA)nMlQY z#963}JmntWjY-6BqwaeRwR-NXBL6CmnyYOF2BAj$G-@Mx4pqf#Q61av#z(Od@n@*> zuA*w-S5&RUuCWVTevpDe#OauTZLkIAp$Chx z4W2~RjQ={jyn<03NkU*!qh9uXW%HT_G*o=cu|96c9Q*Q6sLj!4_u|R6G>b@r9`8>_&h52d=evwZ=j0mF=|x=Y_xF_DkEvw8#|!}P=w9#FlK7~|C>f4CU3HH zIS_SW4r&C`FbX%g?#Ec-GpG*TKy9s$Q0GOzYBSUrb)W7Si6dQS;fD@?b3$+XG8DuX zV_qUBo3`=p=Y#m|%)1}&^BtVXg)4XQI}iu#wlxyI$96Ohwc#Y9enU>eg~S{8YGbEU z`}pfBzKYbh@w{c%|9(_$U3iPrl#$k&xTXd6Anc0Y%vy&K(XHX-%jG=fR zbwj@ccGXlwWg-e=un{U#-7y+RqiSm20lKNw9N<7DJcC+x-(U;8flRB3E3rL4iie3W zqi(qVpq+|csE&MyHSu3q4If}IRy|}NTpLx4S=a#cyfpgLD8g=}@HVy~ZdPh9oQ)NT zm!gVn9p>XESN|jIio{b;nM!@zW@adkAfAjW%Co5F+{0Epr^7qUKe6}uqx>z8M)DO>N)_ zYc#GUPDK6v$sF}Hc*qC#fg|u0PT1hajZg9iBjU+86yHM+#+c32DhqduR7 z<8T9N%AVj8%=?F(lJP99ES_(c(@;uJ<8(ZaFJb$Sm{8#@F6#JH%)qx%1G$G9K>T^~ui|KS-tKfOP#=_F9G*gD<_CNp z?_xWg{+aE-Aq*w{9xM6r_XF%nT;_tkt}jj`9)cC{6vp6r)Bt|c*XXG^ zjCm6)a=gJm*)%W{Rqe}=WSKW`Fi!iIz0n!0N&E*EW8~L%q(?EH_-CAp(cjo*y&jhk z7kg=VXe3@_O=DMl4sW1(I__IrR12^YaWU$pQ-W!D24BD@s17f=WLMKVR4r}Csu*+G z)=nyJAa0I2?){vGZhRA4;{&`v2AX|mPYAwhi>fy2f_4~(gE124U_D%i+8>VMF#H6k zVbb@k7ow8ontkv)*nkrrVhSc+x2YS1zY{-)b#cZG`wrNIiNyQd z_-hO!zJu!6pI8kef3O)&$F{@+unrbsvey5*G{QM>3pIkrZX9~kZY*_B#gm0faW?Aw z0jLM&qdGPh6L1^q{L>hP7f|QlL1oanWxqK^VhqnW88r4|Z!C{~KiZTBVLWjXW?>)f zg{x6F{0^%+R6Q!Sfwyf(hN4Eg0RQ0g6X+p+=dLZji*vw?11~LwNVev2IUpM-N z1G}){ul5VXMO;ff;y3&I{vIwN9!DYQ!k@4uX8yrCXN1qf5Qs8?unhU zKXy9mlsEH=`b~2Se}(Y9t?G zG=}&&zGYVr^?4thNQZOr1LAXK9N(&0Q`YhAuuJ_N-!Gnv7|Q3tq%9b|HE0CUNJibL z8CJy3s1EeUA{>d8c)%ang}7XK$G6q?L5=)1OvF-bfmczhp<1Bh`^M7&w-Zmn8W>r@ z_Z+WjLPH~Jk1D1Sn2$Sg4u%IgW)ZH!Ll{=k@%>2s5T_7V40e1)I}dY+H=@@4f801C z#KtpF16zkpa4WXf`u~bXB@RR|yf}<^&Bh_b6L18c#C}*S)bYL5W@2~Z_plvS40C*| zr5ElezKCOSWo4VOpHUl6%W%iHd`Dpd&o?t@yoQ@m>%UbMcM33uxW5}u!JfqPa4()k zJ!lS_z!6O5zsZ&2bv%HZBOP-bdq+8DABIIczHe6V;}zm5F^=)>)(Nq8?jEBakWkI> z{VJY`>hWIJFK`y|15_1Ht?rn%coaL}V^oIP)lh2r2MVaqzjEWKnvQRaAB<@nUs}`g z`gWqD9O%n|+c*+idmQ_n5YvedqN@KEDnqGpw!_V_Kk*p!;1Sf6eT|x$v|9E)3ows( zJ!(KtPy?u4+iP!7P}}kSr1}5{@WFTJ!HhbNX@dh%`$G|`gZEG`sa|y*-xrkmsEuhc z4#o?pno5axe1D$H!Z_l|s8zBWb^Y638m(yjfQK9PL2Wd1Q16H$^k9o-j_>!vFw7<1gStMX zxnm|{BG$(u?8x)Y2QY$|GfU&5vs*52{`9k2^7B3^_I(Z2)hUn9@xU~jw$wVr=- z?b^{+^;Ud=tx%37G$&j zb>eIe49C}8AEVxCL%Z0XPs4e{Z(;x@bhS1>ZBQAgIh}yoXkJDY^`A(Un+o0RGVX$t zh=-su_YW@(%}JH+_AR&uwZpxM+CWNhBYuE-edhGA#TL-hR`*V9!14Ro96i14hBXwm zTsL7O%}FGU9EHEU=L>RSK%X?QsBsq4Q{8%Wp? zyOSkg2jbQkjf+t=um!bD-$0G5!cd!uL{vvc^??2eA5|CW-xw?-FRA!wJBYQk(_r5 zH{&H#P0StVmW9N)L@H=bhs_vAp-c)Kpgqt@$wRFPanb?_SIV(UCx-LIjl z{VI0C*nFGf(O8jqG4{r_n1kPAYiv8gu9k(Uo%F2hBKW|N6FwK=Fc+l6}V zevEprUqwBj#U#ggurn^hJk&mLA2q`G$&URcgz8Aw0=u7VLZ$uyYIS_shlVzea#QRL z(@=4L)M{AZ#;>CG{Etu>dV(ITH`Ufi7i>)Y%+!(z$=hlbR_~QwGNIQmktLhQZ*)pF z<~Q;yOr8{5^3;o$&EEhfh9Q`7nLat+Oo3b#Fhqr!RaZf z=_!rUJ&n^^G;Uh*__bW8OnQUVlHAv`S{IgHT~;#h`#Xt6BZHkTr8&XQNx#y2q0Wgi zg;&p2Ee!f1qG(@Lr)p_ngtI5Bv_^mD%`&Ac20KH`6#6}iDw;9e8C5!Zgfk(mu-%cA W()=mT*npzcna)q8d9$2_W&Q`dC#~NA delta 13689 zcmZwN2YeM(+Q;!3n)FUWAiyLLNJyb~LNL@o2wjjCLUIEk)fBp1q$IROASAmKBN~tb=Q@Hg3f*+=c4s3)l`n zz!3Ze)u7YcvYKH>Y=ZrS*BL(k$J#IK+-@Fp@V);ZT&{Vi(*abHx!E3heUM=#T8J;{X{dLK0vKVTW& zIl!{!U={MOHE^Iw`66sVyd6n`br2o=2$h*yOt5T>%493l6h`16?C##bCzkw&Q?Qf* z`6#x(s6INj; z+QUtG2UI*2Sx(kcY>&rK9lU@c+W%MG2WpHkQxS&_4QBbnxE8fdw~QzM>OeUK z9q|Zi(N$pv2D2rUkz!tP$BKI{-DZHmHg_q6XFnm8p2t)QocD zyHHa)%gcotT#mJH3pU5?s285XhIj&XaJ+_f@L$OKvc5z$)c-Ei@Gw+I?n3RBWQ@cG zsQMnkOgxAjj+VF86w`sbQ6tU5Xy$S=HX%Ma)r{aQs$)J>1J_aaze8oDHcMKoI+#DS zRu*7q{3rInpRfydk=e0&%`_QWk72~`qU!w#OE7qrwkh-fC>I*Jm2CEL2UMJhT6B4C`Ln1F zUBy_eG246w#G|HU3GT$zn1=0AI5QOE0(>7e#S`bSfN>hu@NzMW3kOqCsalNzcpO{f zTNsL;V;^jo$_EJ!N3v?ILUrI0YO!5IZPTw%+w&G`QHIj17T5#Tkp%R<&c!$`R8cGP zxgHBqFaC<^KvcSUVI*o1jYTyy-HlV-I2W}x7NVwN1#ZB%Fiy|UH3!lz>`wgpT=K69 zf1*H(tM)u|RJK9wiUFveCt*KK##XokHR7YFZFmyZ;Wtnf|9~XRip(&dew&bGVZDSL zo>s_wvj}tNlm8JEY^OjS_z;!iTc}h;vse1!5Y&_`Lp5BAVYmlp_N_RO%z{G0wn-#P?%Qd=QnvcQ6<~GqKmYBj0?=wMA7h2bGZrP!AqLW#$aF#LrM8 zuU=qA5{gZUdt)FbpfZty;kW>`T_3{6cnKTfm)KSN{}(Q5P|&5&G~5%r5GSFgVmWrk z9jLi`3AF}3M`hp^s^Tt1rlW(=A)bZJ(Tke0KchN$8kLC)*iHNYCKqa;{Q|S-lCU;$ z8g|8ORKpKq6MPvpviDFUu@;(4HFk|gEzVKM4z}{}VSE>R;-W=nz)zu96&&H>Zaj?x zFnF=~Ml=Jn^;kD)Sh%DsO9Rbiba=0j!>DxQz(;6rZw8mgY3u^9$0HRnp#rR0Aq z1&I`l!hNWzxPcnMEv$>Jmzh*{M0I2UM&cyb6&OT(0Ndd!s44mw`{E58gAw;y7Rk02 zqB42?Uh=QS^D70lu<3F$!XOMJ?uq{Ghw8{CY>PWkyW=?Oel_Z8g+ozOmW%Xw`TrZ$9Q+J)| zU`JFu6!qL}tcj~oYiAv53LkcT7n>8;TW>nx-~igUMsQIJSGlf7Rk#H;qN6wx-*xY| z+hD$+bi_L-AB9740`|f(H~t6KC2qRW?5Z|cpEwk|VHflc<06HNcr3>e_!)*__dl7G zPsR4c`L5eAiuhSn2CiW=R^MbY)eY65X{Z4_gzCr(sCv$zGJ0bZ`By>E{pQ0W7Ih;L zwa<&N25v&_<5G0+435L=s7wvoY!+(@>b+$+79T*R{3F!j`w?qn!!72>4%|ZiHPUbj z8ekGO#2Kg&W@3HZj_TMxRL0(P%bRaCYbFF$aUyoZ$*46{g38b-R0b|$Q~VgU*l&Be zP|q5bnu7M&h`1l>!35N5oq<|Zt56x)g<4#DQ6oH$8pvm;wbb~}e4oTX)UH{IDt`d$ z;co1N-u+zk=i)3nSnmOTyMa-t#g&cPhDE3jZAEoxA9ltwZu~t?A#S_P{9v&Fm4Rna znZ1tcz`wB$Rx9&o*lX42LKXGHu9${x@B!3_Do_nqA^%!mxUSxAQXRa*n1n63zXE6A zHdN}rL5;N0PE%hWj3l0kv$X%$anYTEPp}uZ-enG$@fbv$hf4W+)cyNW8F(4Bc)xJt z#=Ffx`e19y=U`1-j%siPN!9bkvx)NWt`6&s9R3}4^kpK1M=&^l#cjrd8C%IXTFA4{E zkQcWf;`cN-`)RX?+8#C?jly`!d!l|=U5NJ)?>nMT6h>abPQh|y%Uh90%{lQLYVlph zw)p8$o*vFc?PtvX9*f%di%^-_hnmB;uo<35jqFowj6b0&Y;eqMt3Xu7+G8smh%Imm zDl^&G3rkR$`J0yu?f3Jjefbgg$D6nVqbg0$UqOnjPf-=_J#MDr7^)+0V>|pW)Ra^| zVKU~R8jeA&m5~^O1vm-4k8m-X6n>9`DH!rs^Wti(OS~1e==NX+KIYo^Im>#UcnK;~ z1DGde#)C6)5o(dXi)!dc97H=~PqKrEH=SbVX|~!vZ??yN4CTf-9ERWHbc}t$RJ;Rg z5g$N}umUymvp5;AxN)D;<_pM3oJjdD)VBKy7h#(h%~Wo~=2|UJaH0Kq3ZKHyQB$zv zC3E(lL*2iEgRsHN=AcT%mc;jB2yR0ys^d5i-$PAp^H+==a0_uy9EYz++P4B(>S}Nv z?!dpeaqMgS>Wp|1PQ$;WgJG|mObo{+#A7fNlTr6qq6hzi8Cd7<{E&kM*dFuWFkk7m zp|=(V=eWqni?|+>&RAA1R$*^U_=i~oD^Lxt!_l}4wTiEyM*b^0*!E3+!o@h8jsL*0 z81oii<8V1<;YV+g{~26NIBU-ALpY1L{y$BsGjSC06R7fAsO>rFZL>D+!;!?7unu;7 z$2{K^RlXFp-CjZsl=Y{AJ5=GjJs+Mu4P!8cq?w#{@>-^ z==oo!p-~ve1Jm%F&F2BOAkO{BEV4DI_)!eOXHkpreGJEMu_?Cs*sPJRcn|SLJcYmD zI6Qex9q`iVCu|K0_M;jO{?r_iGccNX19rp{_#J+TVffx><{K7qfsMBcH?|(NnDItOb=mwd;*(cC91(UP#wF3 zov`|K^L!-g{obhO$D%TrirzL{EapOUUWSM92x^YfzBDP%MrB|l#$p9(Ki@=Ec;{DC z$W%>6r8e`1>Bw`akzU2`x!>WY$w2ToW--QoL;kz+z-S8U;WAXp)}lJL7gyj(+<DeQtXG9aVrKfUuWPzKw@54p+0cRPjsL2N=~wzl;=4rymwhp>iY`@f1E z#Se++gxJ;r-48W$dIQx!tM<14hs+FAhaYx*1s4*3j-xQOgY7?v4x%!71C^m(VP2Es zbz$a#*HJ02*U|QWO&*Osh?k%as)INIFJm%x?_~Qw?Y3f1;&RmPcpsIa_Ti?(Q8#n!U0 z_@;}gC%LOxGr72*@>Mtsqq>>YZ$KSPXOT7KwHkIesq2kOZ6=Pvldko9*!~ZdX_!Fy zlc)-B;SikE)Apb3+fn=cBtC?5Zj_|kL_+O|@HtcT(Fc4eNzO{>s z5qKCk;%(HnDIQ>6=rz#HeJW~A97nD0OQ;b}jx~$z9BLb0a{U3d$eQtUmkyq6)MvkhO1-&!|g4sreAwskKqMXlc3sHsR8 zVMa0um60Nxjn`2lPa0|aza8&Kt*O^gyDcEW_WuBqn!x_o{ys}VAFMIT_Wz=BAg&}X z!Y=p&YUJUgO~so~`}q^s*hI6cw_-8nXVHK5kFou~B`-oP-ZQAxACP3un@L_SI#RF= zwcY-PYVaEBg}||9q$#N9vTz2Ly52y2+Km}!I-Z8hi1%PEY&G5(f;ynWQByh-bVK>}1#rFTO_!?@&U8b6fH)1kzr@L+cx7rd^$M>QZ z;bqkJ9XHKvzY^3*xdT=2SE!DMOt<-eMA(0wx#&y5qqqPsq4w#d8RjHhiF)x-+<@;Q zCzmy6rrGc7Q58Op%ES@83s0kt>Y!O>E%ZW7%|vX1XK|GF|5YwdVRW(?(RC~!t~J|C z%@Wk7-5S&?KZp7-N=z{o-HSR2??)}VchJF`u1)7~&=B{)Kukbw-xTx)aq$=zS}f0F z8or8cF)Gz$W;AMztj6c?ehk6HH1naAgQ{m0YCwB13)^_iRIJAm;uo+pCZwCiT$s-O z52Iig1=^P{pcY%hxn`Tpz{iPq;wBtA&$jNvcTgjmoMFCzWMU}sBGkdM3rFI2I2+^U zn{B=qwN}od4!UNU?EfH}Z>gE221jO@6KZz0N$FouDZ7Sy@K@B@*pp+vC%l2$uJv+l zYd#LZ&G;DRW1l=Tbx)wS^KH~NA99abGud7))Z+y>8~=%ev3tIMdsqcHocJkJ%D=_> z7*Jq772D%1;zEqWcQ6K<6`CVB9@X%2)S`V2mFXL(`n<74=JPrk^@X4S=inJsLtPfw zmV*OvEzU$8Bp;(HYQ4~mcph#gzK!E><05k~T|!OGx2RndxY!&(3Fzpjxgxh<8*00p zcH<9FA0Bm=n3N4hUf?g6%_7=>-HDGasaO*EaA>22PDYNiz>{B)k(=X$6_mD2>J#7; z6s68{Qgd_CGv+!AQnHFX{kc_Y*t1=p_7~L6y$kQGtx6so%D<>Pk~dI>*Rap z6lG+k#W)Fbb8_=NX--DE6P@B@6#VwAC#@nbeUE+DTu+WCKc%q1iOHuf^L|E7p(j5l zB`a%jj1yl}=q%1H%6AI*Bh`~!P?VmYvB*iwrJbDILUpV#gilS3NmtcCu4A z&y($Oa#FHMSy;Z4PJ3xi_-~K<@5X2@;v%e^-2eCKDCUsCWfW4woW)eagJ~WoH7li{ zp!E6tHWklqxW^uyo=f-VQJj)Gj|V+D3o`O^bFw`-^p6(Pa#IWQJsx*H{utoc$&q|bFvmY(L)cdQM+n2^;GztDD74rQ2NvH+B13Mu-wZ?ap-fZzb!!x|iqk8?Q9xh7>wS&sM_3U~z{NcFT_NYq!c&S?1 zk(zefrh2%N_NYzWK3KK7>`Jm7G+ldC-J&hJdw^SqXy@X_t1C8Mc--`Y-Y^uW>ZGs2 zbWEdXxV{tW>KeU!)K^Z~YDcvxLmFSq?_FwK*}R^8y82+H)c1@!q0#fkg~$1``1i3h z9Ch=zC#Z2P{W(J0G*<2;m7d+#%1adfNA{hnwHG&D*j`maf4Ot|Nk+yjsAAvY(|>h4 z$f%RtQTkhW!gs=-1%`T(&L|;AG*-3#1Q*Ad<2C;?4H1?ety)`p^Ubg_yOG^uDAQS9 zwc5AebpN;a{hg*tcap2_Q%0#byy_%rIZ8JvI_x{v-+!`HwrFG@jLr2u<*$mQu$+8H zeEYS=l$xp%ABiu~Y*UYa?hY##S~6zDRVB3OUaQD426 zhJ~y#ukk%a=PDiF)4qdTm}I%VVa2c`1EYUC5Z#G!+-Y%sKM9}&$U%h;iEmL)pAsqc}3Ykp*&Wfmv zn`CD;8S|ghLVL=Zn(jneGH!L|Hn5C6}|<-p44 zJ@(RCWpSPDmZi6UY+RlGm2TeOysS%vUAN_ZjH8lSG>QJLd(lJ7`eoVI6KRQE&v9^( sUB`-wp29@YDko-1RWWa|x%Kj4vPysd#}Z~g=(d?uGEo_pZLh5U-%|Sv!~g&Q diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 58d1cb52dcb..4ff9ae163fe 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F , 2020-2021\n" "Language-Team: Persian (http://app.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -41,104 +41,104 @@ msgstr "شاخه‌های مبدأ و مقصد نمی توانند یکسان ب msgid "Running Sphinx v%s" msgstr "اجرای اسفینکس نگارش %s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "این پروژه دست که به افینکس نگارش%s نیاز دارد و برای همین با این نسخه قابل ساخت نیست." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "ایجاد پوشه ی برون داد" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "در حال راه اندازی افزونه‌ی%s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل فراخوانی پایتون نیست. لطفاً تعریفش را تغییر دهید تا تابع قابل فراخوان پایتون شود. این کار لازمه‌ی conf.py است تا به عنوان افزنه‌ی اسفینکس کار کند." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "انجام شد" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "برای پیام‌های داخلی در دسترس نیست" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "بارگذاری محیط pckle شده" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "شکست خورد: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "هیچ سازنده‌ای برگزیده نشده، استفاده از قالب خروجی پیش‌فرض: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "موفّقیّت‌آمیز بود" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "انجام شد ولی با مشکل" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "ساخت %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "بست کلاس %r در حال حاضر ثبت نام شده است، بازدیدکنندگان این پیوند نادیده گرفته خواهد شد" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "دستور %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "امکان لغو تنظیمات پیکربندیdictionary %r ، نادیده گرفته می‌شود (برای تعیین تک تک عناصر %r را به کار ببرید)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "شماره نامعتبر %r برای پیکربندی مقدار %r، نادیده گرفته می‌شود" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "امکان لغو تنظیمات پیکربندی %r با نوع پشتیبانی نشده نبود، نادیده گرفته می‌شود" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "مقدار پیکربندی ناشناخته %r در ابطال، نادیده گرفته شد" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "چنین مقداری برای پیکربندی نبود: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "مقدار پیکربندی %r از قبل موجود است" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "خطای نحوی در پرونده‌ی پیکربندی شما وجود دارد: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "پرونده‌ی پیکربندی (یا یکی از ماژول هایی که وارد می کند) sys.exit() را فراخواند" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,291 +235,328 @@ msgid "" "%s" msgstr "یک خطای قابل برنامه ریزی در پرونده‌ی پیکربندی شما وجود دارد:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "مقدار پیکربندی 'source_suffix' انتظار یک رشته، لیست رشته ها، یا فرهنگ لغت را داشت. اما '%r' داده شده است." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "بخش%s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "شکل %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "فهرست %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "مقدار پیکربندی '{name}' باید یکی از {candidates} باشد، اما '{current}' داده شده." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، ولی انتظار می‌رفت {permitted} می‌بود." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، حالت پیش‌فرض {permitted} است." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "دامنه‌ی اصلی %r یافت نشد، نادیده گرفته می‌شوند." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "از زمان نسخه‌ی ۲ تا به حال، اسفیکنس به صورت پیش فرض از \"index\" به عنوان ریشه‌ی سند(root_doc) استفاده می‌کند. لطفاً \"root_doc = 'contents'\" را به پرونده conf.py تان اضافه کنید." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "رویداد %r در حال حاضر موجود است" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "نوع اتفاق نامشخّص است: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "مدیر %r برای رویداد %r یک باعث ایراد شد" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "تنظیمات needs_extensions (نیازهای افزونه) افزونه‌ی %s را نیاز دارد، ولی بارگذاری نمی شود." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "این پروژه افزونه‌ی %s (دست کم نسخه‌ی %s) را نیاز دارد، بنابراین نمی تواند با نسخه بارگذاری شده (%s) ساخته شود." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "نام رنگ‌مایه خوان %r شناخته شده نیست" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "برای سند \"%s\": %r پرونده های متعدد یافت شده \nاز %r برای ساخت استفاده کنید." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "کلاس سازنده %s هیچ ویژگی‌ای به عنوان \"name\" ندارد" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "سازنده %r در حال حاضر وجود دارد (در پیمانه‌ی %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "نام سازنده %s یا ثبت شده نیست و یا فقط از طریق نقطه ورود در دسترس است" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "نام سازنده %s ثبت نشده است" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "دامنه ی %sپیش تر ثبت شده" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "دامنه %s هنوز ثبت نشده است" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "دستورالعمل %r قبلاً برای دامنه %s ثبت شده" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "نقش %r قبلاً برای دامنه %s ثبت شده" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "شاخص %r قبلاً برای دامنه %s ثبت شده" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "نوع شیئ (object_type) %r قبلاً برای دامنه ثبت شده" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "ارجاع متقابل (crossref_type) %r قبلاً ثبت شده" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "پسوند (source_suffix) %r قبلاً ثبت شده است" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "تحلیل‌گر منبع (source_parser) %r قبلاً ثبت شده است" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "تجزیه کننده مبدإ برای %s ثبت نشده است" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "در حال حاضر برای %r مترجم وجود دارد" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "مؤلّفه‌های کلیدی برای تابع add_node() باید تاپل تابعی (بازدید، خروج) باشند: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "بست قابل شمارش (enumerable_node) %r قبلاً ثبت شده است" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "ترسیم‌گر ریاضی %s قبلاً ثبت شده" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "افزونه‌ی %r از نسخه‌ی %s اسفینکس به بعد، در آن ادغام شده؛ بنابراین نادیده گرفته می‌شود." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "ایراد اصلی:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "امکان وارد کردن افزونه‌ی %s نبود" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "افزونه‌ی %r هیچ تابع setup()ی ندارد؛ آیا این مورد واقعاً یک پیمانه‌ی افزونه‌ی اسفینکس است؟" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "افزونه‌ی %s که در این پروژه استفاده شده دست کم نیازمند اسفینکس نسخه‌ی %s است؛ بنابراین با این نسخه قابل ساخت نیست." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "افزونه‌ی %r شیئ پشتیبانی نشده‌‌ای از تابع setup()ش برگرداند؛ در حالی که می بایست مقدار تهی/هیچ و یا یک دیکشنری فراداده‌ برمی‌گرداند" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "زمینه ی %r فاقد تنظیمات است" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "زمینه‌ی %r تنظیمات به ارث بری ندارد" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "هیچ زمینه‌ای به نام %r پیدا نشد، که با %r جایگزین شود" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "تنظیمات %s. %s در هیچ یک از پیکربندی‌های جستجو شده رخ نمی‌دهد" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "گزینه‌ی پشتیبانی نشده‌ی زمینه %r داده شده" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "پرونده‌ی %r که مسیر زمینه به آن اشاره دارد یا پرونده زیپ معتبری نیست یا هیچ زمینه‌ای درونش ندارد" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "هیچ زمینه‌ای با نام %r پیدا نشد(آیا پرونده theme.conf گم شده؟)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -530,8 +572,8 @@ msgstr "تصویر مناسبی برای سازنده‌ی %s پیدا نشد: % msgid "building [mo]: " msgstr "ساخت پرونده‌ی [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "نوشتن برون‌داد... " @@ -580,7 +622,7 @@ msgstr "پرونده‌های منبع %d داده شده در خط فرمان" msgid "targets for %d source files that are out of date" msgstr "مقصد‌های %d پرونده‌های منبعی هستند که منسوخ شده‌اند" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "ساخت [%s]: " @@ -589,50 +631,50 @@ msgstr "ساخت [%s]: " msgid "looking for now-outdated files... " msgstr "در پی پرونده‌هایی که الآن منسوخ هستند... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d تا مورد پیدا شد" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "چیزی پیدا نشد" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "بارگذاری محیط pickle شده" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "بررسی ثبات" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "هیچ مقدار تاریخ منسوخ نیست." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "به روز رسانی محیط: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s اضافه شد، %s تغییر کرد، %s حذف شد" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "خواندن منبع‌ها... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "نام مستندات برای نوشتن: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "آماده سازی اسناد" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -641,36 +683,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "در حال رونوشت از تصاویر... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "امکان خواندن پرونده‌ی تصویری %r نبود: در عوض کپی می‌شود" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "نمی تواند پرونده‌ی تصویر %r: %s را کپی کند" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "نمی تواند پرونده‌ی تصویری %r: %s را بنویسد" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow پیدا نشد- رونوشت برداشتن از پرونده‌های تصویری" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "نوشتن پرونده‌های نوع رسانه..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "نوشتن پرونده META-INF/container.xml..." @@ -678,470 +720,470 @@ msgstr "نوشتن پرونده META-INF/container.xml..." msgid "writing content.opf file..." msgstr "نوشتن پرونده‌ی content.opf..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "نوع رسانه‌ی ناشناخته %s، نادیده گرفته شد" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "نوشتن پرونده‌ی خلاصه toc.ncx..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "نوشتن پرونده‌ی %s..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "پرونده‌ی بازبینی در پوشه‌ی %(outdir)s است." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "بدون تغییرات در نسخه‌ی %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "نوشتن پرونده‌ی خلاصه..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "درونی سازی" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "در سطح ماژول" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "رونوشت از پرونده‌های مبدأ..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "نمی‌توان %r را برای ایجاد گزارش تغییرات خواند" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "سازنده‌ی بدلی هیچ پرونده‌ای تولید نمی کند." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "پرونده‌ی ePub در پوشه‌ی %(outdir)s است." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "نوشتن پرونده‌ی nav.xhtml..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "مقدار پیکربندی زبان پرونده epub (\"epub_language\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "مقدار پیکربندی شناسه‌ی یکتای انتشار الکترونیکی (\"epub_uid\") باید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) یک XML NAME باشد" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "مقدار پیکربندی عنوان (\"html_title\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "مقدار پیکربندی مؤلّف (\"epub_author\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "مقدار پیکربندی حامی (\"epub_contributor\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "مقدار پیکربندی توضیحات (\"epub_description\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "مقدار پیکربندی ناشر (\"epub_publisher\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "مقدار پیکربندی حق انتشار (\"epub_copyright\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "مقدار پیکربندی شناسه (\"epub_identifier\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "سیاهه‌های پیام‌ها در %(outdir)s است." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "مقصد‌های قالب پرونده‌های %d" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "خواندن قالب‌ها... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "نوشتن سیاهه‌های پیام... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "پیوند خراب: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "شکست در گردآوری عبارات باقاعده در linkcheck_allowed_redirects: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "صفحات راهنما در %(outdir)s است." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "هیچ مقداری برای تنظیمات «صفحات راهنما» ا نشد؛ بنابراین هیچ صفحه‌ی راهنمایی نوشته نخواهد شد" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "در حال نوشتن" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "پیکربندی مقدارهای «صفحات راهنما» به سند ناشناخته‌ای ارجاع می‌دهند %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "صفحه HTML در %(outdir)s است." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "سر جمع کرد تک سند" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "نوشتن پرونده‌های اضافی" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "پرونده‌ی اطّلاعات متن در پوشه‌ی %(outdir)s است." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nدر آن شاخه فرمان 'make' را اجرا کنید تا این‌ها رh با makeinfo اجرا کند\n(برای انجام خودکار `make info' را به کار ببرید)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "هیچ تنظیماتی برای «صفحات راهنما» پیدا نشد؛ بنابراین هیچ صفحه‌ی راهنمایی نوشته نخواهد شد" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "مقدار پیکربندی اطّلاعات متن سندها (texinfo_documents) به سند ناشناخته‌ی %s ارجاع می‌دهد" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "در حال پردازش %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "حل ارجاع‌ها..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (در " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "رونوشت از پرونده‌های با پشتیبانی اطلاعات متن" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "خطای نوشتن پرونده‌ی ساخت (Makefile) : %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "پرونده‌ی متنی در پوشه‌ی %(outdir)s است." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "خطای نوشتن پرونده: %s, %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "پرونده‌ی XML در پوشه‌ی %(outdir)s است." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "پرونده‌های شبه XML در پوشه‌ی %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "پرونده‌ی اطّلاعات ساخت خراب است: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "صفحات HTML در %(outdir)s است." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "فهرست کلی" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "فهرست" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "بعدی" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "تولید نمایه‌ها" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "نوشتن صفحات اضافی" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "رونوشت از پرونده‌های قابل دریافت... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "نمی تواند از پرونده‌ی قابل دریافت %r: %s رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "رونوشت از پرونده‌های ثابت" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "نمی تواند از پرونده‌ی ثابت %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "رونوشت برداری از پرونده‌های اضافی" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "نمی تواند از پرونده‌ی اضافه‌ی %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "شکست در نوشتن پرونده‌ی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "هنگام ارائه‌ی صفحه‌ی %s خطای یونیکد رخ داد. لطفاً اطمینان حاصل کنید که تمام مقدارهای پیکربندی‌ها دارای محتوای غیر اَسکی، رشته‌متن‌های یونکد هستند." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "خطایی در نمایش صفحه‌ی %s رخ داد.\nعلّت: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "خالی کردن فهرست اشیاء" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "خالی کردن نمایه‌ی جستجو در %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "پرونده‌ی js نامعتبر%r: نادیده گرفته می‌شود" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "ارا‌ئه کننده‌های ریاضی زیادی ثبت شده‌اند، ولی هیچ کدام انتخاب نشده." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "نمایش‌دهنده‌ی ریاضی نامشخّص %r داده شده." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "پرونده‌ی آرم %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "پرونده‌ی آیکون مورد علاقه %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "مستندات %s%s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "پرونده‌ی LaTeX در پوشه‌ی %(outdir)s است." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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) اجرا کند\n(برای انجام خودکار `make latexpdf' را به کار ببرید)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "هیچ مقدار پیکربندی اسناد لتکسی (latex_documents) پیدا نشد؛ بنابراین هیچ سندی نوشته نخواهد شد" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "مقدار پیکربندی سندهای لتکس (latex_documents) به سند ناشناخته‌ی %s ارجاع می‌دهد" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "فهرست" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "انتشار" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "بدون گزینه‌ی Babel شناخته شده برای زبان %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "رونوشت از پرونده‌های پشتیبانی لتکس" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "رونوشت از پرونده‌های پشتیبانی لتکس..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "رونوشت برداری از پرونده‌های اضافی" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "کلید پیکربندی ناشناخته: latex_elements[%r]، نادیده گرفته می‌شود." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "کلید زمینه‌ی ناشناخته: latex_theme_options[%r]، نادیده گرفته می‌شود." @@ -1156,15 +1198,15 @@ msgstr "%r فاقد تنظیمات زمینه است" msgid "%r doesn't have \"%s\" setting" msgstr "%r فاقد تنظیمات \"%s\" است" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1223,8 +1265,8 @@ msgstr "گزارش اشکال می تواند در ردیاب در مسیر ." msgstr "برای اطّلاعات بیشتر به بروید." @@ -1256,257 +1298,264 @@ msgid "path to output directory" msgstr "مسیری برای شاخه‌ی برون داد" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "لیست پرونده‌هایی که قرار است دوباره ساخته شوند. اگر با -a مشخّص شده باشند نادیده گرفته می‌شوند" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "گزینه‌های کلی" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "قالب سازنده مورد استفاده (پیش‌فرض:html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "نوشتن همه‌ی پرونده‌ها (پیش‌گزیده: فقط پرونده‌های جدید نو تغییر یافته را بنویس)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "از محیط ذخیره شده استفاده نکن، همیشه همه پرونده ها را بخوان" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "مسیر برای محیط ذخیره‌ شده و پرونده‌های doctree (پیش فرض: OUTPUTDIR /.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "درصورت امکان ساخت به صورت موازی با N فرآیند پردازشی (مقدار ویژه‌ی «خودکار» شمار N را به تعداد پردازنده تنظیم می‌کند)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "مسیر جایی که پرونده‌ی پیکربندی (conf.py) قرار دارد ( پیش‌گزیده: مثل پوشه‌ی منبع)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "هیچ پرونده‌ی پیکربندی‌ای استفاده نکن، فقط گزینه‌ی -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "نادیده گرفتن تنظیماتی در پرونده‌ی پیکره‌بندی" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "مقداری را به قالب‌های HTML بدهید" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "تعریف برچسب: «فقط» تکّه‌های با برچسب گنجانده شود" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "حالت ریزبینانه، هشدار درباره‌ی همه‌ی ارجاع‌های ناپیدا" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "گزنیه‌های برون‌داد میز فرمان" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "افزایش ارائه‌ی جزئیّات (می تواند تکرار شود)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "بدون برون‌داد در درگاه خروجی استاندارد(stdout)، فقط هشدارها در درگاه استاندارد خطاها (stderr)" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "بدون هیچ برون‌داد، حتّی بدون هشدار" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "خروجی رنگ شده منتشر شود (پیش‌فرض: تشخیص خودکار)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "خروجی رنگ شده منتشر نشود (پیش‌فرض: تشخیص خودکار)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "نوشتن هشدارها (و خطاها) در پرونده‌ی داده شده" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "تغییر هشدارها به خطاها" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "با سوییچ -W، در هنگام گرفتن هشدار ادامه بده" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "نمایش گزارش کامل ردیابی ایراد" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "ایراد در اجرای Pdb" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "نمی توان گزینه‌ی -a را با نام پرونده‌ها ترکیب کرد" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "امکان باز کردن پرونده هشدار نبود %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "نشانوند گزینه‌ی D- می‌بایست در قالب نام=مقدار (name=value) باشد" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "نشانوند گزینه‌ی A- می‌بایست در قالب نام=مقدار (name=value) باشد" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "درج خودکار رشته‌مستندات را از پیمانه‌ها" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "آزمایش خودکار تکّه‌کدها در قسمت‌های مختلف پیمانه‌ی doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "پیوند بین اسناد Sphinx از پروژه های گوناگون" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "نوشتن مدخل‌های لیست اقدام‌ها (\"todo\")که در ساخت می تواند نشان داده و یا پنهان شوند" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "بررسی برای پوشش اسناد" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "گنجاندن رابطه‌های ریاضی که در قالب PNG یا SVG به نمایش در آمده" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "گنجاندن رابطه‌های ریاضی که MathJax در مرورگر نمایش در آورده" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "گنجاندن شرطی محتوا بر اساس مقادیر پیکربندی" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "گنجاندن ویندهای کد منبع اشیاء مستند شده‌ی پایتون" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "ساخت پرونده‌ی nojekyll برای انتشار سند در صفحات گیت-هاب" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "لطفاً نام مسیر معتبری را وارد کنید." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "لطفاً متنی وارد کنید." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "لطفاً یکی از %s وارد کنید." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "لطفاً یا y و یا n وارد کنید." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "لطفاً یک پسوند را وارد کنید، مثل: '.rst' یا '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "به ابزار شروع سریع اسفینکس %s خوش آمدید." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "لطفاً مقدارهای تنظیمات زیر را وارد کنید\n(اگر مقدار پیش‌گزیده‌ای درون داده کروشه شده بود، برای برای پذیرش آن فقط کلید Enter‌را فشار دهید)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "مسیر برگزیده‌ی ریشه‌ی مستندات: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "مسیر ریشه‌ی مستندات را وارد کنید." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "مسیر ریشه‌ی مستندات" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "خطا: در مسیر ریشه‌ی انتخاب شده‌، پرونده‌ی conf.pyی دیگری یپدا شد." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "ابراز شروع سریع اسفینکس روی پروژه‌های از قبل موجود اسفینکس بازنویسی نمی‌کند." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "لطفاً یک مسیر ریشه‌ی جدید وارد کنید (یا برای خروج Enter‌ را بزنید)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "شما برای تعیین شاخه‌ی ساخت برای برون‌داد اسفینکس دو گزینه دارید.\nیا از شاخه‌ای با نام \"_build\" درون شاخه‌ی ریشه استفاده کنید،\nو یا شاخه‌های را درون یک مسیر ریشه با نام‌های منبع (source) و ساخت (build) جدا کنید." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "شاخه‌های منبع و ساخت از یکدیگر جدا شوند؟(y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "درون شاخه‌ی ریشه، دو شاخه‌ی دیگر ساخته خواهد شد؛\n\"_templates\" برای قالب‌های سفارشی HTML و \"_static\" برای قالب برگه‌ها و بقیّه‌ی پرونده‌های ثابت.\nشما می‌توانید پیشوند دیگری (مانند «.») برای جایگزینی نویسه‌ی خط به کار ببرید." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "برای شاخه‌های قالب‌ها (templates) و ثابت‌ها (static) نویسه‌ی پیشوندی را بنویسید" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "نام پروژه در چندین جا در سند ساخته شده به کار می‌رود." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "نام پروژه" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "نام نویسنده (ها)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "اسفینکس نظریّه‌ای برای یک «نسخه» و یک «نگارش» برای نرم افزار دارد.\nهر نسخه‌ای می تواند چندید نگارش داشته باشد.\n مثلاً برای پایتون نسخه‌ چیزی شبیه به ۲/۵ یا ۳/۰ است،\n در حالی که انتشار چیزیست شبیه به ۲/۵/۱ یا ۳/۰a۱ \n.\nاگر شما نیازی به این ساختار دوگانه ندارید، هر دو را یکی تعیین کنید." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "نسخه انتشار پروژه" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "انتشار پروژه" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "اگر مستندات قرار است با زبانی غیر از انگلیسی نوشته شود،\nمی توانید همین‌جا یک زبان را با انتخاب کد زبانیش انتخاب کنید.\nاسفینکس سپس متن‌هایی را که تولید می‌کند را به آن زبان ترجمه می‌کند.\n\nبرای فهرست زبان‌های پشتیبانی شده، به این نشانی مراجعه کنید\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "زبان پروژه" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "پسوند نام پرونده برای پرونده‌های منبع. معمولاً این پسوند یا \".txt\" است و یا \".rst\".\nفقط پرونده‌هایی بای این پسوند به عنوان اسناد در نظر گرفته می‌شوند." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "پسوند پرونده‌ی منبع" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "یک سند از آن جهت خاص است که به عنوان بست بالایی «درختواره‌ی محتوا» در نظر گرفته می‌شود.\nیعنی، این سند ریشه‌ی ساختار سلسله مراتبی اسناد است.\nمعمولاً سند این کار «نمایه» است، ولی اگر سند «نمایه‌»‌ی شما قالب سفارشی است؛ می توانید آن را به نام دیگری تغییر دهید." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "نام سند اصلی شما (بدون پسوند)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "خطا: پرونده‌ی اصلی %s از قبل در مسیر ریشه‌ی برگزیده بوده‌است." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "ابراز شروع سریع اسفینکس روی پرونده‌های از قبل موجود بازنویسی نمی‌کند." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "لطفاُ یک نام جدید وارد کنید، یا نام پرونده‌ی موجود را تغییر دهید و Enter‌ را فشار دهید" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "مشخّص کنید کدام یک از این افزونه‌های اسفینکس باید فعّال باشد:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "یادداشت: ابزارهای‌ imgmath و mathjax نمی‌توانند در یک زمان فعّال باشند. انتخاب imgmath لغو شد." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "پرونده‌های خط‌فرمان ویندوز و Makefile می‌توانند برای شما تولید شوند، به گونه‌ای که شما فقط نیاز باشد تا مثلاً فرمان `make html' را به جای فراخوان مستقیم ابزار ساخت اسفینکس اجرا کنید." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "آیا پرونده‌ی‌ make ایجاد شود؟ (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "آیا پرونده‌ی خط فرمان ویندوز ساخته شود؟ (y/n)ٍ" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "ایجاد پرونده‌ی %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "پرونده‌ی %s در حال حاضر وجود دارد، رد شدن." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "پایان یافت: ساختار آغازین شاخه ایجاد شد." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "شما باید حالا دیگر پرونده‌ی اصلی‌تان %s را جمع آوری کنید\n و بقیّه‌ی پرونده‌های منبع مستندات را ایجاد کنید. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "از Makefile برای ساختن مستندات استفاده کنید، مانند این:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "از فرمان ساخت اسفینکس برای ساختن مستندات استفاده کنید، مانند این:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "که در آن سازنده یکی از سازنده‌های پشتیبانی شده است، مانند html, latex و یا linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nتولید پرونده‌های مورد نیاز برای یک پروژه‌ی اسفینکس\n\nابزار شروع سریع اسفینکس ابزاری تعاملی است که شماری سؤال درباره‌ی پروژه‌یتان از شما می پرسد\nو سپس یک شاخه‌ی کامل مستندات و پرونده ساخت Makefile را برای استفاده به همراه ابزار ساخت اسفینکس تولید می‌کند.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "حالت سکوت" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "ریشه‌ی پروژه" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "گزینه‌های ساختار" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "در صورتی مشخّص شدن، شاخه‌های منبع و ساخت از یکدیگر جدا می‌شوند" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "در صورت مشخّص بودن، شاخه‌ی build (ساخت) را درون شاخه‌ی منبع بساز" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "جایگزینی نقطه در _templates (قالب‌ها) و ... ." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "گزینه‌های اساسی پروژه" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "نام پروژه" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "نام نویسندگان" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "نسخه انتشار پروژه" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "انتشار پروژه" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "زبان سند" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "پسوند پرونده‌ی منبع" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "نام سند اصلی" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "استفاده epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "گزینه‌های افزونه" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "فعّال‌سازی %s افزونه" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "فعّال‌سازی افزونه‌های اختیاری" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "ایجاد Makefile و Batchfile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "ایجاد پرونده‌ی سازنده (makefile)" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "پرونده‌ی سازنده (makefile) را ایجاد نکن" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "ایجاد Batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "batchfile را ایجاد نکن" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "اسفتاده از حالت ایجاد برای پرونده‌های Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "عدم اسفتاده از حالت ایجاد برای پرونده‌های Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "قالب سازی پروژه" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "شاخه‌ی قالب شامل پرونده‌های قالب" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "تعریف متغیّر قالب" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "حالت «ساکت» تعیین شده، ولی یکی از موارد «پروژه» یا «نویسنده» مشخّص نشده." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "خطا: مسیر مشخّص شده پوشه نیست، یا از قبل پرونده‌های اسفینکس وجود داشته‌اند." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "ابزار شروع سریع اسفینکس فقط یک پوشه‌ی خالی درست می کند. لطفاً یک مسیر ریشه‌ی جدید مشخّص کنید." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "متغیرهای نامعتبرقالب؛ %s" @@ -1828,47 +1877,47 @@ msgstr "امکان استفاده‌ی گزینه‌ی «هم‌خوان شما msgid "Line spec %r: no lines pulled from include file %r" msgstr "سطر مشخّص شده %r: هیچ سطری از پرونده‌ی گنجانده شده %r بیرون کشیده نشده" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "درختواره‌ی فهرست مطالب ارجاعی به سند کنار گذاشته شده %r را دارد" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "فهرست مطالب شامل ارجاع به سند ناموجود %r است" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "نویسنده این بخش: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "نویسنده این ماژول: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "نویسنده ی کد: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "نویسنده: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1883,82 +1932,10 @@ msgstr "گزینه‌ی \":file:\" برای دستورالمعل جدول داد msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "پارامترها" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "بازگشت ها" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "نوع برگشتی" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "عضو" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "متغیّر" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "تابع" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "ماکرو" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "ساختار" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "اجتماع" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "شمارش" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "شمارنده" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "گونه" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "مؤلّفه‌ی تابع" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "جدید در نسخه %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "تغییر داده شده در نسخه %s" msgid "Deprecated since version %s" msgstr "منسوخ شده از نسخه %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "نقل‌قول %s تکراری، مورد دیگر در %s قرار دارد" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "نقل [%s] قول ارجاع داده نشده." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "اعلان ++C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. cpp:%s:: %s' است." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "پارامترهای قالب" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "ایجاد" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "کلاس" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "کانسپت" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "مؤلّفه‌ی قالب" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s (کلاس)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (متغیّر عمومی یا مقدار ثابت)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "نشانوندها" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "ایجاد" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "بازگشت ها" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "نوع برگشتی" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "تابع" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "متد" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "کلاس" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "داده" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "مشخّصه" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "ماژول" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرار دارد" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر در %s قرار دارد" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "قالب مرجع معادله‌‌ی ریاضی (math_eqref_format) نامعتبر: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "متغیر ها" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (دستورالمعل)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "برانگیختن" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "%s (گزینه‌ی دستورالمعل)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (نقش)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "دستورالمعل" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "گزینه‌ی دستورالمعل" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "نقش" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "توضیح تکراری از %s %s، مورد دیگر در %s قرار دارد" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "پارامترها" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "عضو" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "متغیّر" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "ماکرو" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "ساختار" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "اجتماع" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "شمارش" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "شمارنده" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "گونه" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "مؤلّفه‌ی تابع" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "پارامترهای قالب" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "اعلان ++C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. cpp:%s:: %s' است." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "کانسپت" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "مؤلّفه‌ی قالب" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s شگرد کلاس)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s(%sویژگی)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "نمایه ی ماژول های پایتون" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "ایراد" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "class method" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "متد استاتیک" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "ویژگی" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (منسوخ)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (دستورالمعل)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "%s (گزینه‌ی دستورالمعل)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (نقش)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "دستورالمعل" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "گزینه‌ی دستورالمعل" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "نقش" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "متغیر ها" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "توضیح تکراری از %s %s، مورد دیگر در %s قرار دارد" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "برانگیختن" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "متغیرهای عمومی؛ %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s گزینه‌ی خط فرمان" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "گزینه خط فرمان" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "یک خط خالی باید پیش از اصطلاح واژه‌نامه باشد" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "اصطلاحات واژه‌نامه نباید با خطوط خالی از هم جدا شوند" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "به نظر می رسد واژه‌نامه اشتباه شکل داده شده است، فاصله‌گذاری از ابتدای سطر را بررسی کنید" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "اصطلاح واژه‌نامه" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "نشانه ی گرامری" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "برچسب ارجاع" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "متغیّر عمومی" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "اختیارات برنامه" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "سند" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "فهرست ماژول ها" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحه جستجو" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "بر چسب تکراری %s، مورد دیگر در %s قرار دارد" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "تکرار توضیح %s از %s، مورد دیگر در%s قرار دارد" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "شماره‌ی شکل غیر فعّال است. گزینه‌ی :numref: نادیده گرفته می‌شود." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "شکست در ایجاد ارجاع متقابل. هیچ شماره انتساب داده نشده: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "پیوند هیچ برچسبی ندارد: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "قالب شماره‌ی شکل نامعتبر: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "قالب شماره‌ی شکل نامعتبر: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2326,35 +2380,35 @@ msgstr "پیکربندی تغییر داده شد" msgid "extensions changed" msgstr "افزونه‌ها تغییر کردند" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "نسخه‌ی محیط ساخت به‌روز نیست" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "شاخه ی منبع تغییر کرد" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "پویش اسناد %s: %r شکست خورد" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "دامنه ی %r ثبت نشده" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود." @@ -2378,39 +2432,39 @@ msgstr "نوع ناشناخته مدخل نمایه %r" msgid "Symbols" msgstr "نماد ها" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "دور تسلسل در درختواره‌ی ارجاعات فهرست مطالب تشخیص داده شده، نادیده گرفته می‌شوند: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "فهرست مطالب دارای ارجاع به سند %r است که عنوانی ندارد: هیچ پیوندی تولید نخواهد شد" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "پرونده‌ی تصویر خوانا نیست: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "پرونده‌ی عکس %s خوانا نیست: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "پرونده‌ی دریافت شده خوانا نیست: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "شماره‌ی قسمت‌ها پیش‌تر به %s نسبت داده شده ( آیا درختواره‌ی فهرست مطالب شماره‌گذاری تو در تو دارد؟)" @@ -2420,7 +2474,7 @@ msgstr "شماره‌ی قسمت‌ها پیش‌تر به %s نسبت داده msgid "Would create file %s." msgstr "پرونده‌ی %s را می سازد." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nبه صورت بازگشتی در مسیر دنبال پیمانه‌هاو بسته‌های پایتون بگرد و \nبا به ازای دستورالمعل‌های خودکار پیمانه‌ی هر بسته در مسیر خروجی یک پرونده‌ی reST بساز.\n\nالگوی استثتاء های می‌تواند الگوی پرونده‌ها و یا شاخه‌هایی باشد که از تولید کنار گذاشته شده‌اند.\n\nتوجّه: به صورت پیش فرض این اسکریپت روی پرونده‌های از پیش ساخته شده دوباره نویسی نمی‌کند." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "مسیر پیمانه به سند" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "الگوها‌ی به سبک fnmatch در پرونده و یا شاخه برای کنار گذاشتن از تولید" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "پوشه‌ای برای قرار دادن همه‌ی برون دادها" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "نهایت عمق زیر پیمانه‌ها برای نشان دادن در فهرست مطالب (پیش‌گزیده: ۴)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "بازنویسی پرونده‌های موجود" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ردگیری پیوند نمادین. وقتی با collective.recipe.omelette ترکیب می‌شود توانمند است." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "اجرای اسکریپت بدون ساخت پرونده" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "قرار دادن مستندات هر پیمانه در صفحه‌ی خودش" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "در برداشتن پیمانه‌های «خصوصی»(_private)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "نام پرونده فهرست مطالب (پیش‌گزیده: پیمانه‌ها)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "پرونده‌ی فهرست مطالب را ایجاد نکن" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "برای بسته‌ها و پیمانه‌ها سربرگ نساز (مثلاً وقتی رشته‌متن‌های مستندات از قبل آن‌ها را داشته باشند)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "قرار دادن مستندات پیمانه پیش از مستندات پیمانه‌ی زیرمجموعه‌‌اش" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "تفسیر مسیرهای پیمانه بر اساس ویژگی‌های ضمنی فضای نام‌ها در PEP -0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "پسوند پرونده ( پیش فرض: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "تولید یک پروژه‌ی کامل با ابزار شروع سریع اسفینکس" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "پیوست مسیر پیمانه (module_path) به مسیر سیستم (sys.path)، هنگامی به کار می‌رود که گزینه‌ی full-- داده شود" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "نام پروژه (پیش‌گزیده: نام پیمانه‌ی ریشه)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "نویسنده(های) پروژه، وقتی که گزینه‌ی --full داده شده باشد استفاده می شود" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "نسخه‌ی پروژه، وقتی که گزینه‌ی --full داده شده باشد استفاده می شود" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "نگارش پروژه، وقتی که گزینه‌ی --full داده شده باشد استفاده می شود، پیش‌گزیده همان شماره‌ی نسخه (--doc-version) است" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "گزینه های افزونه" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s شاخه نیست." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "عبارت باقاعده‌ی نامعتبر %r در %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "آزمودن پوشش منابع پایان یافت، به نتایج در %(outdir)spython.txt نگاهی بیاندازید." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "عبارات باقاعده‌ی نامعتبر %r در پوشش عبارت باقاعده‌ی زبان سی (coverage_c_regexes)" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "رابط برنامه‌نویسی مستند نشده‌ی C: %s [%s] در پرونده‌ی %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "امکان وارد کردن پیمانه‎ی %s نبود: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "تابع پایتونی بدون مستندات: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "کلاس مستندسازی نشده‌ی پایتون: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "شگرد مستندسازی نشده‌ی پایتون: %s :: %s :: %s" @@ -2598,24 +2652,24 @@ msgstr "'%s' یک گزینه‌ی معتبر نسخه‌ی پایتون (pyversi msgid "invalid TestCode type" msgstr "نوع TestCode نامعتبر" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "آزمایش مستندات منابع به پایان رسید، به نتایج در %(outdir)s/output.txt نگاهی بیاندازید." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "بدون کد/خروجی در تکّه‌ی %s در %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "نادیده گرفتن کد پیمانه‌ی doctest : %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== کند ترین زمان خواندن =======================" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "دستورالعمل Graphviz نمی تواند هم نشانوند محتوا را داشته باشد و هم نام پرونده" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "پرونده گنجانده شده‌ی خارجی Graphviz %r یا پیدا نشد و یا خواندنش با شکست رو به رو شد" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "نادیده گرفتن دستورالعمل «graphviz» بدون محتوا." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "فرمان dot %r نمی‌تواند اجرا شود (زیرا نیازمند برون‌داد graphviz است)، تنظیمات graphviz_dot را بررسی کنید" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "dot با خطایی از کار افتاد:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "dot هیچ پرونده‌ی برون‌دادی تولید نکرد:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "قالب خروجی graphviz باید یکی از قالب های 'png' یا 'svg' باشد ولی %r است" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "کد دات: %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[گراف:%s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[گراف:]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "تبدیل با خطایی از کار افتاد:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "فرمان تبدیل %r را نمی توان اجرا کرد، تنظیمات image_converter را بررسی کنید" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "فرمان لتکس %r را نمی توان اجرا کرد(برای نمایش ریاضی لازم است)، تنظیمات imgmath_latex را بررسی کنید" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%sفرمان %r را نمی توان اجرا کرد(برای نمایش ریاضی لازم است)، تنظیمات imgmath_%s را بررسی کنید" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "نمایش لتکس: %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "لتکس بین سطری: %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "سیاهه‌ی بین اسفینکس جا به جایی را انجام داد: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "بارگذاری سیاهه‌ی بین اسفینکس از %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "مشکلاتی در برخی از سیاهه‌ها به وجود آمد،ولی این مشکلات راه‌های جایگزین های داشته‌اند:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "شکست در رسیدن به یکی از سیاهه‌ها به خاطر مشکلات زیر:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(در %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(در %s )" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "شناساگر بین اسفینکس %r رشته‌متن نیست. نادیده گرفته شد" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "شکست در خواندن intersphinx_mapping[%s]، نادیده گرفته می‌شود: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[منبع]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "در دست انجام" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "مدخل فهرست اقدام پیدا شد: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "( در%s و سطر %d جای گرفته است.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "مدخل اصلی" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "برجسته کردن کد پیمانه... " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[مستندات]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "کد ماژول" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

کد منبع برای %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "بررسی اجمالی: کد ماژول" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

همه‌ی پیمانه‌هایی که برایشان کد در دسترس است

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "مقدار نامعتبر برای گزینه‌ی ترتیب اعضا (member-order): %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "مقدار نامعتبر برای گزینه‌ی «از مستندات کلاس» class-doc-from:%s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "امضای ناشناخته‌ برای %s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "خطا در قالب بندی نشانوند برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "مشخّص نیست کدام پیمانه را برای مستندسازی خودکار فراخوان کند %r (سعی کنید دستورالعمل «module» یا «currentmodule» را در سند قرار دهید، یا یک نام واضح برای پیمانه ارائه دهید)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "شیئ ساختگی شناسایی شد: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "خطا در قالب بندی امضا برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" در پیمانه‌ی خودکار معنی نمی‌دهد" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "نشانوند‌های امضا یا یادداشت مقدار برگشتی داده شده برای پیمانه‌ی خودکار %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ باید لیستی از رشته‌متن ها باشد، نه %r (در پیمانه‌ی %s) -- __all__ نادیده گرفته می‌شود" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "شکست در دریافت امضای سازنده‌ی شیئ برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "پایه ها:%s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "ویژگی ناموجود %s در شیئ %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "شکست در تحلیل مقدار پیش‌گزیده‌‌ی نشانوند برای %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "شکست در به روز رسانی امضا برای %r: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "شکست در تحلیل نوع یادداشت برای %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "ارجاعات خلاصه‌ی خودکار سند %r حذف کنار گذاشته. نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "خلاصه‌ی خودکار: خرده‌پرونده‌ی %r پیدا نشد. تنظیمات تولید خلاصه‌ی خودکار(autosummary_generate) را بررسی کنید." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "خلاصه‌ی خودکار عنوان‌ٔار نیازمند گزینه‌ی :toctree: است، نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,26 +3055,26 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "شکست در تجزیه تحلیل نام %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "خلاصه‌ی خودکار به طور داخلی پرونده‌های rst را ایجاد می‌کند. ولی پسوند منبع شما شامل rst نیست. نادیده گرفته می‌شود." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "نشانوندهای کلیدی" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "مثال" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "نمونه‎ها" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "یادداشت‌ها" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "مؤلّفه‌های دیگر" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "دریافت‌ها" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "منابع" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "هشدارها" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "فرآورده" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "مقدار نامعتبر تعیین شده (بدون کمانک انتهایی): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "مقدار نامعتبر تعیین شده (بدون کمانک ابتدایی): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "رشته‌متن ادبی ناقص (بدون علامت نقل‌قول انتهایی): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "رشته‌متن ادبی ناقص (بدون علامت نقل‌قول ابتدایی): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "دقت" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "ملاحظه" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "خطر" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "خطا" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "راهنمایی" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "مهم" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "توجه" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "همچنین ملاحظه نمائید" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "نکته" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "هشدار" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "فهرست عناوین" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "جستجو" @@ -3345,34 +3404,22 @@ msgstr "موضوع بعدی" msgid "next chapter" msgstr "فصل بعدی" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "لطفاً برای فعّال کردن کارکرد جستجو\nجاوا اسکریپت را فعّال کنید." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "در حال جستجو برای چندین واژه. فقط واژگانی را نشان می‌دهد که شامل این موارد باشد:\n همه‌ی کلمه‌ها." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "جستجو" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "نتایج جستجو" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "جستجوی شما با هیچ سندی هم خوانی نداشت. لطفاً اطمینان حاصل کنید که همه ی واژه ها املای درستی دارند و دسته بندی های کافی را انتخاب کرده اید." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "جستجو سریع" @@ -3409,20 +3456,30 @@ msgstr "C API تغییرات" msgid "Other changes" msgstr "دگر تغییرات" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "نتایج جستجو" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "جستجوی شما با هیچ سندی هم خوانی نداشت. لطفاً اطمینان حاصل کنید که همه ی واژه ها املای درستی دارند و دسته بندی های کافی را انتخاب کرده اید." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "در حال جست و جو" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "آماده سازی جست و جو..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "، در " @@ -3443,30 +3500,30 @@ msgstr "گسترش نوار کناره" msgid "Contents" msgstr "محتوا ها" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "نمایه‌ای بر پایه‌ی ۴ ستون پیدا شد. شاید یک اشکال برنامه‌نویسی از افزونه‌هایی که استفاده می‌کنید باشد: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "پانویس [%s] ارجاع داده نشده است." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "پانویس [#] ارجاع داده نشده است." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "ارجاعات ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ارجاعات نقل قول ادبی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "%s:%s مرجع هدف پیدا نشد: %s" msgid "%r reference target not found: %s" msgstr "مقصد ارجاع %r پیدا نشد %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "امکان دریافت تصویر از منبع راه دور نبود: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "امکان دریافت تصویر از منبع راه دور نبود: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "قالب تصویر ناشناخته: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "نویسه‌ی منبع غیرقابل رمزگشایی، جایگزین با «؟» : %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "رد شدن و نادیده انگاشتن" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "شکست خورد" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "نام نقش یا دستورالعمل ناشناخته: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "بست از نوع ناشناخته: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "خطای خواندن: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "خطای نوشتن: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "قالب تاریخ ناشناخته. اگر می‌خواهید از رشته‌متن مستقیماً خروجی بگیرید، آن را با نقل قول رشته‌متنی محصور کنید: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "درختواره‌ی فهرست مطالب شامل ارجاع به پرونده ناموجود %r است" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور العمل: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "نقش پیش‌فرض %s یافت نشد" @@ -3617,27 +3674,27 @@ msgstr "هر کدام از شناسه‌هایی که به بست %s اختصا msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "امکان دست یابی به اندازه‌ی عکس نبود. گزینه‌ی تغییر اندازه :scale: نادیده گرفته می‌شود." @@ -3654,13 +3711,13 @@ msgstr "مقدار بسیار بزرگ :maxdepth:، نادیده گرفته شد msgid "document title is not a single Text node" msgstr "عنوان سند یک بست متنی نیست" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "به بست عنوانی برخورد که در قسمت، موضوع، جدول، اندرز یا نوارکناری نبود" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "پانویس ها" @@ -3679,20 +3736,20 @@ msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته msgid "unknown index entry type %s found" msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[تصویر%s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[تصویر]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "عنوان درون شکل نیست." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "بست به کار نرفته: %r" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 857363997a0ac6770110068432ee35505b68654a..ec7590cafdcd1d7f87310a6d0a7baf0781af0d68 100644 GIT binary patch delta 943 zcmYMzPe>GD7{~Ev+;w-|b<=8HiTsx>n8b?O%1Q^pLYC=tD4L3$} zQ%`b_hV!{m|8-#6^Xp3&ym%(vnn|~18rpB&ZqNE#p@&`|)6(j9MD{(uIhys(0mG41 AasU7T delta 977 zcmYMzO-PhM9LMqh#+JB-JTEieV#p0;>nz5ew zt&JB2N+W$OgCy%A(-!7Y1B$2xoI_1;5jEi$l5B$PCC7IQ)o*}K>UW+@dtiHVI0IGID%SG8MW27QE?t1L+zof zU-8+01$;(@0_>vhz*p3c=)iPlaWVyJN8N=CYJx5#SwC3;i>UT8>d59%6Rx1X_%RaN z)=_t3BgX#glD(or6TU}%`Da)DgIc*yqqaJM3K*caG=mD5M;+CWYad4akuISYG~&va zUHJ-XLF3g@WXVgEgVJO$b7Lwj-JA@Lh1K8DHLs~Z+gr%y27=tl)29m6=XKY-NMCoZ X+S>5ZOO8&5B{v`puWQH;zu^4^GsIb? diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 1259e6118e4..708acbd2dce 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Finnish (http://app.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Moduulitaso" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr ">" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "<" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Sisällysluettelo" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Luvun kirjoittaja: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Tekijä: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" +msgstr "Muutettu versiossa %s" + +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" +msgstr "Poistettu versiosta %s alkaen" + +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" +msgstr "%s (moduuli)" + +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" -msgstr "Uusi versiossa %s" +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" +msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "Muutettu versiossa %s" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" -msgstr "Poistettu versiosta %s alkaen" +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "moduuli" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" -msgstr "%s (moduuli)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" -msgstr "moduuli" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (poistettu)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Tehtävä vielä" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Huom" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Varoitus" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Vaara" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Virhe" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Tärkeä" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Muista" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Katso myös" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Vihje" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Varoitus" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Etsi" @@ -3342,34 +3401,22 @@ msgstr ">>" msgid "next chapter" msgstr ">>" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Javascript pitää olla sallittu, jotta etsintä toimii." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "etsi" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Etsinnän tulos" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Pikahaku" @@ -3406,20 +3453,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Etsinnän tulos" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 291b36c25f4..51714636029 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -2,7 +2,7 @@ Documentation.addTranslations({ "locale": "fr", "messages": { "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", - "© %(copyright_prefix)s %(copyright)s.": "", + "© %(copyright_prefix)s %(copyright)s.": "© %(copyright_prefix)s %(copyright)s.", ", in ": ", dans ", "About these documents": "\u00c0 propos de ces documents", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index c11b9d19248910fec20d4c1009edab62e0f9359c..1fa8720e93f0c1b1b92a53dc3b6f44670f09afa1 100644 GIT binary patch delta 14862 zcmb8!X?#>gzW?!aLKe2Lhd@|z5(o)P0)#az62P#?BC?6d)+C*zA?c32ARy47;)3Er zlsJwks4(EDxHBqlD9Y$~QE>TxzFo%|ng4_Py7OS(Rdvp(Q}wG~ z)#>2hZ%o>>F)8|fo5VXU{`YBuWp&1x>8kzve>WFc)^)aJZNyu-r(HkGI>qG&3oWaJ z_DusUD@gs#ftFQ;lLlEieR#@(2M2T%k305kDtoP=G6T2>Y=LB059Y>S()HSWMxxDVCuQEbNht=B2&#^cx? zzeU~Hw8*krU?+627pkL4*bL{RI`X;KLpX!_9jJaj!_oMQTOU2lw9i5HAHa0pZ>^=! z0q?@*_-E9Bp2Y6>8Y+ZmuoGqvH|-bT6Vyv_0CpK+26hRiP@j*AgctkcQr9imh5E}F z?MmSkh4I*&g-OSm*aoYR<+h@z7e9ttsu!^i(=M>A#rOy^2CEh8rzM$;X;_7l6_LA81KWz^tF?D@)Qs#48q`7aF=lNtFoSw;%*1i17nP%C5WuOp0`-C;u3upn z>g~qHv)d{}<-!uo#&tLyA4KKSnJ9&13QaB~;jk4d)SX<1pk6cs_2B)u2*1OYIJ?BM zdSE#w;YQ?=Rf`kwP1Nql8fS8>8WoA_P!o#YLV+!5)uEE^7-~sAK#lM;DwGK%2+M8_ zMzpFOr$;z2iQD_dSP^mndyC~7rx}y-$X4%3hSn1OLgsridYe90Bi6h@3%Hl zXpXBdj)%nBfVyEf-iU|sa-25JB-g{P&!d*;GrSDXq9QZ%63d#0%djQBj)nLUw#N1( zlD2ssMm54>3hi((Cj(x6SRC^Tr<4$aaZ=;st3!ICmQK6nR%jCu-*oXRM*q)`j z4%<=RGTS`A8&jz_p!$DxHt}yv;Vcbl*yvI-kdD}cdUsTIPeLEwf`#}!PQ>1G%s~=C zMdBgX=P{l7N!J9{X9e{PY>Rhb3)~r{FrPv_Y5-|WOEc|_3gHM;2q$72yv(gvp?1Y8 z?2cPe9Y2S9?k!BlPf!y)h3fZzP?1g{p;9o~hJs$4fm)+}s1S{CZ@36Gv+1Y-1W_HY zM}_ug)N|WVGkOFk;6dz!No1mSM;5ZNtlp>rT!{=QYF$l1Bdo>tcn|i*7^>srxD>xY zeH$(%TpGw`R0MWmK5Kmpm8|C$n3<(6Gy_aS_1_D1eE=#_C3uEZ;^=iz+Em(kuQ7`@u2VzGLTN9^Z4c>>D*lMxaj{Q&v+;r4ZMbN>!(aZa-0~9oX ztWtBrdI1$Or_6k0s!$zo!s~H25@lSga->@O-TH^9Buy?i?b9%e`f?nJ zcVl!2g*Pc^japUEh#5%V)*d9$t&BIG_V1zuTTS-z=EgXbWFmzsC~T%mBkxTNqaA9K#${5Jb>zF zeU)Wxz~eXwmsFeQx1y5r7{(`3P5hhDaGD0a@JCcV(QoRlurc)xI2E(-Cal4H{1J5? z^a_~g=A(9n54+$RRI=WK8u*{E2%p9bJR7B;8K;ps+P9gw2>YOByb<++{ivCoLNihn~bO|(_W3?LVCXy}g``K9P!1Y6=} z*Bz(`?ZqDW40gxQu_Lw!o9FXTGaQFXS`UuKb*N--Kq45mx<<@zy2;p?3rn#b-hj&1 zEvOMch02BRQIYx?+hQ{^Q%jeLnrSW$#)UW>H{(Qn&8>I7()@0igA=s>Ybj_=-o^3Q zez^(x0@vHI1?|t`KztqBW8)QOz?rD}2po$uun_C8BR-Fs*a=i*?Um-2Q6{$F{nk(l z`c*p~HKTHDgDWu|H=-i49ed(_)LNfF?c>y|Oma;^E!8~ihgGQUxdk`(`#0>lr zqrE7ktTJm^h)TxGun0@B6>dR|{84o9Mbv;!p>{#SYBSJ&s7Oq}{DyhQ`i|_cKs5StW5}?7yIHiyc4xVL)My^SD~K2 z0x!dLI2_->0!&}W16?VMTW8k9iweye)D6Ewb$A4O<4)!fXkp=j>oHUDn5^mwf{TbXhxKcTB|{*(3iOFVT^|uQ)xel zIvJnG0eHr3@4dma7vV_S%W(oeh{~N)n2Sw0zm;=^n5X?;N%`-5h^#@-ev}#k6MDs*aJ&Z6Wf4Mjr?H>J@HM< z$AsIB{ZJ1qz!F@K&G7~7g>T{zY_!RI*N0;s^#!O%U5^^z1E>KWa@*g>Z0ct>5&t9# zU209zbwjQ7aMv2tF4&G5$bQuR{Q#4(%N@q$q9Sk<$6(9NCYz^Y4)wcHA%7b6qPJat#y-@u>r6y0 zM(wVpr~zCPrJxZXLB04Ss)O%Pq3n2wvHMYg*)f5_2*o>|4KGcjJ!&H0&_2Lt#nS6_ih;z3YNIohuvr+B$pmJju zs^7n2e|!&zV9Vc|NQ_4&9JNX*wBdpu({LSXWOZ)+kJys>A=G`ZqH^H`rem{vOa!{& zKGztf z&O{At1ZrRxqav`(t#89isUN`$(7De z{wS*b1a`&r2TceEqmpkL>b_a1rMn3giTkh{9(L;|Q4?yt-3(yFc6a~Jp+N`H0@MMt z0dsI4YNYRD7M^wOyu-}s0#y4&%ONw*R8;>~V-KPplUI1S%GO(gdZQS(b@+#k%r zvKDm`9z?D2C#VO%!X9YvG}|c8bu?;#b5S8)hMn%)8`s5_7G@xYQlvomT&b&If9o^Z@t6E%V>p&lzZ?~zr%*5c9NXg8 zsPm&yy{WfD^_z#gZL}z}~^t*mR#+ z!y8aD`vYnze!xsjd%}c#5UPCwrehiEU|WS9wEs6y&~|$Om7T9(7M{aA?6RK(#Bn$r za}Jms@Sp~^5|u00qCUSjyBk*pv(Vu*&AFMun>1t7cnWj7_LV zQ8T#_lki2QDx3U%%~CY$q-wX+7}G(sCe&FJvE?pF?#8(-sKOnlEg zHyksmUx>}H>^&2D03g_b)?2EHLi~sV9TI(rjBu}BT{97D|&gW(g zXW@A25!B57g6pyUNwXyPxE?}v{0a8g^)JlQO~4)0m*Fkg&+T_% zAs0?zZ*;!mha^tMb@(=R$9Z3yBXu3>g}ZSke(1IjIc?f2@gmyq!m;=fHpSe3@XxPU zh!NgzHT}l?{9cQjsUJt(xa?cAkJn*i>Nj8yyj`*s`%v5P_&?23b^Xpb5|#b)a3rq6 z>9`-gnEF2^w?Y_ArC~LN7I+g5#k)~!{5mT6K0_TS_8EROU}Fs8SyX7Nzc)+N?g#U0 zdLC*3n^Dj0#pd`I)I^@gX88IK#6N|?areTfIFI^i+>cYvnvNTvGhfANs0X*82Dl4z z@JUR^6Q}|Ih*L4`N3-q9P%mDGEpY=z@a`Xpe<6idKbfo_i^Hg2hvj$(m3(rKJDzmAQISYWvEx6}%Wxs} zy*Nobuzh1YzD*Wm1{WSdZI>gMiOrjsi1a~SzX<1{7f0YTn1#QfLZ8*tj)#04W>c?1 zMfO(A!w0b&9*egVqkmB7LPK&hJAOuY$HCM`<3L=F7vdwRB>M(6kfzN|Xme1>Rf!H> zfttW3)PUYVJ%0`r`r=eOezb>igw|*cg|>JAd*aKkKcEKIt%V)m=c7?;wiY$x`>+HL zVLwc1X~(~ULs0{oj*IYe9E1lkAHP8@t<#DeQMM1Dpc(m5A-WNjl)F(U+y_{Oty|mi zUrNjHV(K|` zt5NkmsH{GR7vP{Y+wx!-N8%f(UC@sI*spy*8a08rxDKzuN=!<(I&6!-IP90c@}PP`UOF7Gm^k_d<48JN^eq5h^)Wptje|sF@x`b&!^6vc3p2rfMk$rN^jX~_lg>9&0I^fp- zib}Gtus3$%+gps|Q3JgJ9efb={Bx)zJC0hCCb=d8`KaBr5J%yylJ{FLQ&4iX%(LVF zP*{u_>0LM$|AboOZ&4lO_cYE&CDTUKi(;sx`x|O|edC(m%S2!VX45_fH2^QhfB$c% zppk!!!|@lKg~NNBZ^7-TB)SXL@iy1PIEDHbsBcD5AG4IjsBc9jPRANl4m9AU_#JA3 zQ}WsWy0I+Zj{lsl!po_zMy=snsIz`Zfr-!^sF^nc z7f}Pq=x2`b$*2jJ^^4l^e?VA6gFcBjEpy5PLC5DW^DcM1{&3Le4LNz` z!9aDqw!+B?_AGE_g}hE~jmH-p=H!HOxjPj0dddo78;9JI(5pwc{)3B#J2`o!ftnRT zUqxkjA$^zomiG+(wy|fZAeJ#~M(U8VK&jtT?Tx=T6o>>%z0Os}tl;V_Yn;bd#i+so zr@|X{JdS&NR&3t*9}^bNoHE%N=r93)z^MxOE4)D`6sf5R1T~YzE1VfMl|KLS0w*uK zGF)9XaN(6fU)UQQIWrjXW;5xqw^TR!{7z}WU+$}j1U+G2!0!ZVM5t$M_C;&#j@%LP z2brN~ag|pCh*T3ALJ>PQ>Fq{yy~}<63a3gPd#V;Lt_qYc<(lIOIoUa(Y$xaqMXKDl zc>Inx7$m@+Ff&@}^%KBgfivA34z5rq3?%5S@+{|#)qyf^?SmJOkNTHt^5IG*SxTEV z+4q~4G6L)OX|U(Fd#{MZXL5dPC3E04=QsMQJr)1aYgiL??{eICGrQ{Z9}EXd!$Ge% z_SwZx*|kqxGN_{3e+ye9OF=SGhOn^|QKuW})CUnm#tUZFOLo zS%78UU`V0Q3B|_Fc_C?5kSTjfi%R+m2LevD$G^hy@O&s72!^bgmFmO2r#cb}vzmm$ zs}?6a{%C>EU+HDNvz?GP9M-&N)?Tu;ZLG_Jds1UREInt(F7=lu)ONk1Z*s1(BR6)* z6%QvTc|zP?`|Xv{%u-KPX{3rx;e>-8e~6L>SQ89Xu%@A`SjF-WQ&OD3;w5BJ?VMmTPsRQ%-4b1O9&?y`+tZ+!}>YbxT zkF5;SZJ>q-j-4=i*6fm*&WO@~wH1_BdLqlb;o^#Fwq!wRp!$M7PGP_PL;4in?6HxLJ%HDOn4UdQ2gNJjcz{&~M^=)tG#R7Xi{Xd;Mv-Xv>s*1lV zusF=yw5(;h5kIl5))4-+#m$&K&i{8VIayZ2jir^|QZwTJrJJnSpO0iDMkkol%Ac#i zFr5&&#I9y@5ZYh`A@T(OmlLaDmyWE4T}~MZ8IPuWRB0UNonbw#$zG1kkS6EnsP;Os zcV2wS?)>ZN<*OpBJ{@RmBVUC-z?#H%ymU`OqMvBQE_^jFAxaNb-sKHD*@k5iML8r$UdDz2ActwOgr?buzUtCYaqke`MA@MowyezvX;`liQfPR*E!@R*g`IHDD z&kAq6Go5+n0BqP*U`?s5etk)FvX8guaBw&}+yn66EnyO?tYO!04#D%UHSGHLL3sX^ zU}SO7$G|z$&cE>Md1zV-;_r>`R8Qo*dmWvK|M_^`QyuKI*c-2pPpBRG#?)zU) z*m(xuwV<#1Uu*A)N5wrdd%fQz#jC?FzF73(;miuukkuTS4G(cnhm;ThzFrpaab%jv zu`NALX%#*H=fU}}EF&{L)okOSH`edtqjt+hW=AXxMaucIFRE?+>9r|~a)Rv1$#pFo z*FW(o&4$3ggZ~$?e~0YA4#%H>mEzC#~Cu~+Nan(+wuFt$Le#C=s1r5atPJE zl5DrDo1S8~=T={eJv32wZ60i=)$LEQ`{kJp8Q_(Xt1zRVp(R{c9E zcAKP0?2fVk#~o{!6Vi{5hFwcItm5lNst3Il9GGkz>--zFwl%CZpSu7XFMfM{R;s-< zv5tR4YF^i(wcTv8UYe_q2frjjeb^!dH~v#f!!r9@?GbbS1%LZlF~^b)tg>8hWVz+7 zf2OrPsj*#A-y*|qVvk{^Ih(5aH4%RaTX@&6UmF@Kf}WbnWxkaQ^&yJqK|Dcz%?3vw zp!)Wm?3L^&|sq*oZ_G=%h@HWS@SD#Q2b;c2O7KwK{v7)f zyR^P}4|`an`c*ycw1gs$*$t)fQ^!38IZKq&-U3SjE6Z)zMIOe#U}imh;gFM6H=>Vy zTVrK(WLd+m`WO4yUb}Ye2kq+aFR(AG^Y^u#Cchrpq592z?MD;rs=AUw`@Q-F1MH!V z>-y)~>Gi22?1IE5;T1JrXUfDWC3Rzq?GfCzw%G1#SJypOY|pKmG}_)?*K3UZPup9c JIo3X8|35tD#_a$A delta 14480 zcma*t33yc1{r~ZMLjnm92!yZ`E`dM@Nl3!Jg8@NVWk*>uBoi`_%!HW?f>Ng_qJkTy zk_uAMKcZ+A>xfZMEW`>zE$+CW1zZuKR0XRj{@$NCm)fWQ<@xvV;dRcPyPWg=e$TmA z>^*lR9J?(c@^Q=fdoBL=ahzp!#HMZ3`}Kc6PfyEtccZ_7H(&#ekAYYfNZ z`dC(w{aiPNV-E>OM^eS=K1*it2k^SEBA;gKcmtw&nTO3pASIJE)PL zz;1XRJ79;wrau6mr#}~oy48A!8PJv3i2h7e1my-}MBgez)yNW5MAoAQb{|rg z)(&*=Q`Gedqar3JsU)mD2fATr9D#b!0@Mu3aS{em57_Ja1uC@3m&K~t>V?XA31;AR zI2AXeYUnIB#JD2MYK%z{8VYqQ*L>82CZI0dgvEFUo8#osmem~>pmMzi`Nz7QKgQu3 zI3C-Np}4RN6^RIHLbo6*&$=5`YmrxIC?_AFMtBkx$_q%Et-hC=VhW-jv=y0zbrMx8 zIaE?E&cj}~4pp3W*aJ^t2BtDP9q*6oFGlJ(V%Bm5e>;CJQ(tMwHoC0C)t z@ujGg+=JY}x*rwtBdDC7LCx$ZjKh>GEsNk;si=);7V7sKF<$F`1C2g5p~gIZI86MK z@FJ?8IKhN^0IHaVxlThx#D}`!llT?x!>0JeL=%BssNYZEZFnB9!QYbSPCVZ_ss{du zNc$(f1wQQd>rlV%LlxC2Ou=|6G#=CNYHW`Q7)GV?dd$I_ur(2W3R}_N zKh0c!bQpvpi8s0Z4X7gChTZTW z>c0O#UDsf?S@$WZ3ARB+(23B{3=2>p8;Z)&XjEjTxX0(CW>kiH@EUB0_hBpCg1T-e zY9f1a9KMd)U)oVnD(ZenU0Wki&yB33p^g5Px3~m_ z7;5G(VlFv8jxFdnpKB)61vS8)sQV8`{XQ0nP{f);gL_()$hFpf%*G7z&<7`CZ(N00 z_$SQ650C=4lIB}h6<&>s&>_^SIfdG2k{6hi26}NBUaj?il*S|u3@Em&>9__J zq7N|>dw9%^C*m#iD^ctB9BSrQEi~&qjOuSj72{s_c#{${pguT^<1=so)?gCPw+_+R zi0@!2R`CaQW4(jRFqh#f*ITgxK92FY108$@-^O=P5qqr6r0`=@?$2Qcwpe5y+!u$^ zufT{xznzAPqd~dJSu!TjPeZNW4yYO#hgubLPy-6!tGEnxpOHSxT8kU8A7(B#*I$Dg z$gQaBwxVk4@x{cy5sf#!FUI0EZX8`t-!^`BW`Za5oNY^B%< zSD=ct7Bzv#a1ids_IR#>_-p1Vm1do`$71?DFb8i%Jzyu2PU}n5%*Olq48v8}7eB^{ zm>Mue>cO$}*P;gWCMxG&pd#3riXDjkA~dwz{HTH4jG1^B7UNFTOj<8BUqXGcIsIv_ zCD??12)knhyWuu$hlfzte}Cd^ zHS(3H8rg|WaW|&o0aOZ)qGtRl_Q#IZ=9_UEUP1pZ(~ns1(-_Qww6NK+rl4|kA1Z`z zVIg*4Dac9K3|C=ayc=8NU$7${b^AYH5&e{F&2`gJ5xE6*-h
wgc8wz?2C^K+<~ zv|4V8CkxxqAA+rL8fIZRYCW&V6g-Sd%`wc!v#4d-WrcZgckE4nBq|kEn634{j)rpg zEUE@R!a?{2>c(BJGdV0ohyE1QK$fCXwgxr8XHb#&D;D45PyaIAP3swNo;kIbG3o(T?hg;3LjN=-;}@tM@f`NSj9bj{ znK+DoDUQR3up^$r9+-Hm8BjiE(f6Q=b1n9!{;U^h=*C}T7i@Q%neh-*?yg2fXc_83 z>rp8=jGE~MoQXMWjW?lE@BvQ6taWBbydD$iZ$Z_@Hk_pOzl(-$lyo~^DL5F@u+;TB z*SoQkE=0}nWn>1{aa2vTxWf#*7b^5uVt4eQCUz_K!pBh0c^7kee(di>av|?d6Y{yJ z3)kZqd=8u9Ma;$~cbToVKW5PPV-~JQMQj&ppzpfFrpk^MMJJZ zRsU|(0A9x-_&qknKI@HxQ8yfgnpr81!!_>jhp{XDcd-%vh@&y?9`p7bi|YU89^&7a z#y$?j<7=pyzKI3+cT@yg)R^!7SvZ#dM$E($sL&_=&O9)~^>WPN_+nHvC{1{V@?5t!UhfsrVQs;vP)F{ivC~hsk&mHISyiH#6*jir6^RfM=j0c7uET zWmL_)fx7QcsK_SVXKE-ifQCX8K&4_Gw!{sXhTBmCd&%v;h0W=oM4k5os#cnAG)2`1 zmCEth7pGuvycspoou~;NL~1HxouyI2f$y;$UbD%hB#bJ$T5N)UKy4_G;b43d9ZbHT zS1RVAiY>#z{N!v5IlA+xNeqmHk|bbJvN(W9u8oX3860hQ8%|3&;2nlUs~^%bc8-KZJX zp$2pU6YwHxAn{wxa>_@|cs}a9)z}5Mxb8#M(5G(yM{G^MD%N=SNJ%XCizffCen{DO`X%r5je?97W9jXS7qpm-R-SH=Ei(MZv4n+-k#v{aE zBV5XXj(CfE!d6u1UPRsK2)4nmT;m=kB5|x~e9)$b9%Ex_z()2sFB|%eckmLz-cRw- z!gas-llcpWUr@_+#nUFDYa%qXGu@8d!`g)t&>J;xv8VAW`qne%{XG>k=st)l%9pV* z{tff+ebht}cbX5BOjKmXU;+kExesFsMs9NtY((AgNz`(C&OQDzrqO@T?VmwyKylBS zfwVy7v@hzq@u>UELJi1+zrnjvDQs3}CX|b$AYw&mbmoUm*b;Y}AFRJ&8~R_NmSfy= zCU+^Qy}c)P!I`L?Z#jO9529+~x6hmNUqB7$9c+YuM{P)7#3cW1cA4TEi>mG*F2+A# zdraDGBG3){(I1RDUWH1{I(!K~Ld|sZ3+C?+I=pB;JQktOza3-6j7rhJF!t~NX?x5F zJ7ZgZ=;`(^!y@_OQaIaBTHwv;3xE zqyq=$(in!zQK5Vmb)&zde*Y(S!sNYX=jw$D?&n=N+<>c&A#$CcO(H{o3TGZtf~m(AaJ-his=)2Im9e=+yz zk7MZ%!v%OVUX7oj?mP08h?&WPS4>D2p+Z@OI$@Af_z6c~%6_vUAa#kHl_dJ>#@}qvA(2{#(`FESk@mg z8&~5I?2L2YG#kxI)PC>))?ghvIQ}hDI~AxI--*re2rAc~V-Ajbo4;^EKaR)t?`16dq8T zGarU6akATAh_L};H;zAqZE^oc#6N|`F%Bp+|3p>!_t+YLK^05ukInI}s0Z~zrEHLU zd?IQeaX;iu*cXd(8Ye?O|qU&p@qGioA*pOIEvhuyHn=f?i1`$VpxQJ@o0IeHPF z#8Y@DZv4Xhy?@UyIhp>wI33eYnwQXG>_vYw-hr>;DxCF|dC>cqPyZt7fxSlYx$ zBi1uC^uuR(C8m9CcD!P2On)n~FsvOI##>ICui&3?1O2&Y%z58pL;4pn5flDlzWtg> zLf;RE>-@7OHJf5GrCl^S^TYc%41d6>IN+aV*{sDR`e!j2f5c{(_>K8@zBZ_wPC*r$ z7d4O@kW;OjF^JcG%ikT~SE&7D{dc5LA$^~Q29SErT-XPj(jSbP$yjWHQ&6j8u6w)` z=hCmlU3d_S@#gd90iWXp`gz}*>#s)*^cKv-`!V+4|M$_*$UneI_$_wC%l>5sumGFW zFUK%0$3i@Vs`f5F@E6cnii7bzEW^|v%|NchYv}L8JWRh}YGC38^52pJ4{<=%y%SZX zsXv(<4@8Z$7Iof>I1pdQVodtkq--(vqW>srhHqmhJc+ul(M7Xb+T#HF)3E?=zexOZ zXzbxYPdw$GnD&bq&}8Hk>j~6Mb1ge|eidrjZN_wb0~L|8I1jtpcB}?gp$2d(cEC-j z6xQK5d?`XhAy166WB(_TS-6n?<8HrM13OlX3voWjcj8spD&CHL(UjqM`mdl?Ps;>5 zwx7(yBKpg*GroX|$WizAA8{`INLoWX_JtC}E*#i_O2Heb(4WT)?AXYTz1>D&SNi3s zP~VQa@q^eAU&6k46h~u=L_4;F&cycg{isOZh7@%D`!Aa%@3s9ln zidu&6;ZQt*so1%(9ZOvw*LkP`-GamMVN{AfMNP0l6Fc@+%*1>pcL@!>_3lS4w`Z{! zU&4OqG__+p<4ja8SL0x;Ma}3<)B{hWBGn|>j%{dpSW16BK8f`>8H3I2*muD`Y_8(k zPvbf~f{MV@=60;gH();f!>Ey4DJC)*IEwCA9D}!^itn)7k85Ga{`OCjre~FsCY6^shEW-!eUevuR-l-+fX~=x2OsH zf|_Ag8$0%LD#H@`yHOia=eFj&H8_a=4(y62+eS=?lH1v_|3WbV_26x&*Y6Hgk-dTn z@dxhlVaM#pg^cJ5@y{!XYE6^UC>8_J`oRJ@E@R>x7r*)82&Jy=YCD^_AcXA_|i&Z8eW zKtp?ScgK!>g3UmU{2KIN5LIMvqt0vJ#jKVqP_6ZpGVEBY z$D&qSIkMwMtQ%=47k@A2sqPaR?s385rNg?DbcpYR7}x zz!tmSg%jyNgZeIr%QBHl!bUvbDxfhH2Vv~3gqqnNR4Q8cG%t-@OrhTowcIYpYj7nh zm+#?R?4NBSRD+u7%WnTm)N*at%S37-Mmlj|J&oD81GW4TbIgc`p$4=L_5Obm6@l0A z3j6{yuprlteO^z;{`AYx!Oa+tdvFxiqau@#X9k*`$NE=}ZsCANT8FCc4>5=r+`hlJ zDYiRN>;4hc%O{E|x&x?zokcCz#`)%f>8OpX7!@%;DneUPk+cg~|H^U80(0Z3sAV@F zwVv-sJ>Y#*1nfdHkQS&1W@8&1?H-@&9uH#+j^Bmd@j=wY4xl3PB`VUVBQ#V@8GX#g zFdwx?--i17eHNGFUQ~nz_cc{K9~;qMjhf-@I0ZMNit-dHaXRRW)j6PonnrKf4}8*0c3CYW-hC?HAbtO$6tl zBDMeo* z3pj}W1yp4E4Kq9A8dL=KVt1|o<200$#NlSAOGZ6-8fwq?p=#iM)C^xn73~>R^{0<8 z`^G5Lz{a9pyUS6Ls6%~#e1ZcpZlt--5NyZuEiVn-FoL?_4pdIxL_P2rj>N{J%myr_GRYnSB00;KZ4CLy~sQ#7iTJjQ)uW05%-5bqF$?qQC~R! za{H;HP4NvyRrNyDKyO18XDw=d?;agpn^&7uvtUi<=fPOihlyFz!@bG;zX8 zJGyn^TMcU7zG`%I*VGs6=GQttzq8C64EX|nCo@zNnm#Zs6fP-uN&@~e-y&z3ry}ef z%rDXRrx!Jh7G858Av(?Tc=E6cU#Qv%lsTa)Z;7wWSK^fUD!d`5I^YDo3&XyO(mdyi zMgBn0Tk81AoLrCN3tc+bTN=IKzi7`~W?KTxe9R(lw}F3)qOE%8-Vc}w%6Usr|VW;<1$Ab0Ur zIM@2B%biJ1RWMNE4TZS$+H!Bu>r@3oA>YCZuagyBkJp5_ zfm7lsDd$|Tf0-{B@K-Wj$HPNQ10~f#uh&gyR;jnl6RxNp>`b09eaejKqpz6SJI_5O z)Uzh-zB!XTq{pPhlw6pSP%)|=oGcy7t6I@h$T@o0Fz-ZaF79Z$%aHhIR>qA}dO zXSCwJZ{qR-T>AeP_*iMry?=hg+*kyOoyyDKquMF=Eb}@UZcs8*3)KYPGO??thsUfi2N(-w+HLDSNgopbWe~qFf`<= z2vh}FjUyLTdVCdRxpH`pQBxK+2JZnPjf`)c_bm-TAZB`uidmZgQUOkzer`*T( z#okiCT^rHTFiX6C3k!rng{p&LU(n0uz((Wvv>(-PcS1g=qK8R}HYP8d&!wyDw|nzy zCSMpAoqVAvF5>mGMU}EyXlMKPlVZCSkFNCief5v>tJ$-7%0v%Ux-3Bb|JQsNF{7#W zX^~V>uV%-J?T_`_^DJ#Sp>SoTNBf1xSM4y$vij}O%|EwqP!iir-R-RYQ3{*7Ectaq z3o~`!f9z&Tlc&O~T{9LD+L!h;&*HG6Hc8?6bw{%%cxw(H%D(p#yP&HUD{FP!^obLC zT16&)C9&0bO=f5w$+U{<2HW-*arVsGQSo+K-GF%eKtgSo#&(xlr?K6=wp$ZBwRTQp zyMOK0#&%ErkXn08Kg3$?n%Mp8)-tjftE2Ai z6njg&J*MtRnmsG zy5`KQiEZ4?SBuo|#43;q80^$F&9V>Kwcqr#rz8~-?%1AFQ}BIi-TZ93bAx``d`%L0 z5qQJPbBOXH-b-Fy2VsI}GGumf3Sntj)n2zU*KQpb85J&3jh4h-Fa92?FH#ZoRjRrO zH`{0ZquQ9cS?J>Tf3i^2T$N# z$QA!y1(){utWs)~sv)NTr!C&8{d0jG?#!#Ak~g*4NW833yJ?SqT0RYjGR`M1vwPbUYd^ZozBX?_*} diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 0703e23edcd..269bf4b55e1 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -1,16 +1,16 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # ABOU SAMRA Jean , 2020 # Adam Levine , 2020 -# Christophe CHAUVET , 2017 +# Christophe CHAUVET , 2017,2023-2024 # Christophe CHAUVET , 2013,2015 # cyrille gachot , 2019 # David Georges, 2021 # Larlet David , 2008 -# Denis Bitouzé , 2020-2022 +# Denis Bitouzé , 2020-2023 # fgallaire , 2010 # fgallaire , 2010 # François Poirotte , 2016-2017,2020 @@ -35,14 +35,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Jérémie Tarot , 2022-2023\n" +"Last-Translator: Christophe CHAUVET , 2017,2023-2024\n" "Language-Team: French (http://app.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: fr\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -65,104 +65,104 @@ msgstr "Les dossiers source et destination ne doivent pas être identiques" msgid "Running Sphinx v%s" msgstr "Sphinx v%s en cours d'exécution" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être construit avec cette version." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" -msgstr "Création du répertoire de sortie" +msgstr "création du répertoire de sortie" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "lors de l'initialisation de l'extension %s :" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable. Veuillez modifier sa définition pour en faire une fonction appelable. Ceci est nécessaire pour que conf.py se comporte comme une extension Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "fait" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "traductions indisponibles" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "Chargement de l'environnement pickled" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "a réussi" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "s'est terminée avec des problèmes" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "La compilation %s, %s avertissement (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "La compilation %s, %s avertissements (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "La compilation %s, %s avertissement." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "La compilation %s, %s avertissements." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "La compilation %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe de nœud %r est déjà enregistrée, ses visiteurs seront écrasés" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -170,12 +170,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -183,70 +183,75 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." -msgstr "Valeur de configuration invalide trouvée: 'language = None'. Mettez à jour la configuration avec un code de langage valide. Utilisation de 'en' (English) comme substitut." +msgstr "Valeur de configuration non valide trouvée: 'language = None'. Mettez à jour la configuration avec un code de langage valide. Utilisation de 'en' (English) comme substitut." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Option de configuration inexistante : %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Votre fichier de configuration comporte une erreur de syntaxe : %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -254,291 +259,328 @@ msgid "" "%s" msgstr "Votre fichier de configuration comporte une erreur de programmation : \n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "Le paramètre « source_suffix » s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un « %r »." +msgstr "Le paramètre `source_suffix` s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un `%r'." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "La valeur « {current} » du paramètre « {name} » ne figure pas dans la liste des possibilités valables « {candidates} »." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Le type du paramètre de configuration « {name} » doit être {permitted} et non « {current.__name__} »." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Le paramètre de configuration « {name} » a pour type « {current.__name__} », tandis que le type par défaut est « {default.__name__} »." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Depuis sa version 2.0, Sphinx utilise \"index\" comme root_doc par défaut. Veuillez ajouter \"root_doc = 'contents'\" à votre conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Évènement %r déjà présent" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nom d'évènement inconnu : %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Le gestionnaire %r de l'évènement %r a créé une exception." -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "L'extension %s est exigée par le paramètre needs_extensions, mais n'est pas chargée." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Ce projet nécessite que l'extension %s soit au minimum en version %s et par conséquent il ne peut pas être construit avec la version chargée (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Le nom du l'analyseur Pygments %r est inconnu" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "" +msgstr "Le lexème du bloc_littéral %r en tant que \"%s\" a entraîné une erreur au niveau du jeton : %r. Réessayer en mode relaxé." -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "plusieurs fichiers trouvés pour le document \"%s\" : %r\nUtiliser %r pour la compilation." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." -msgstr "" +msgstr "Document illisible %r ignoré." -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "La classe Builder %s n'a pas d'attribut « name »" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Le constructeur %r existe déjà (dans le module %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Le nom de Constructeur %s n'est ni enregistré ni accessible par point d'entrée" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Constructeur %s non enregistré" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" -msgstr "domaine %s déjà enregistré" +msgstr "le domaine %s a déjà été enregistré" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" -msgstr "domaine 1%s pas encore enregistré" +msgstr "le domaine %s n'a pas encore été enregistré" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "La directive %r est déjà enregistrée sur le domaine %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Le rôle %r est déjà enregistré sur le domaine %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "L'index %r est déjà enregistré sur le domaine %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "Le type de l'objet %r est déjà enregistré" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "Le type %r crossref_type est déjà enregistré" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "L'extension source %r est déjà enregistrée" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser pour %r est déjà enregistré" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "source_parser pour %s non enregistré" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Il existe déjà un traducteur pour %r" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "Les kwargs pour add_node() doivent être un tuple de fonction (visite, départ) : %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r est déjà enregistré" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "le moteur de rendu mathématique %s est déjà enregistré" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "l'extension %r a été intégrée à Sphinx depuis la version %s ; cette extension est ignorée." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Exception initiale :\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "L'extension %s ne peut pas être importée" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "l'extension %r n'a pas de fonction setup(); est-elle réellement un module d'extension de Sphinx ?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "L'extension %s utilisée par ce projet nécessite au moins Sphinx v%s ; il ne peut donc pas être construit avec la version courante." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "l'extension %r a renvoyé par sa fonction setup() un type d'objet non supporté ; elle devrait renvoyer None ou un dictionnaire de méta-données" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "numéro PEP %s non valide" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "numéro RFC %snon valide" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "Le thème %r n'a pas de paramètre « theme »" +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "le paramètre %s.%s n'apparaît dans aucune des configurations de thème recherchées" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "Le thème %r n'a pas de paramètre « inherit »" +msgid "unsupported theme option %r given" +msgstr "l'option %r n'est pas supportée pour ce thème" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "Aucun thème nommé %r n'est trouvé, hérité de %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip valide ou ne contient aucun thème" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "le paramètre %s.%s n'apparaît dans aucune des configurations de thème recherchées" +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" -msgstr "L'option %r n'est pas supportée pour ce thème" +msgid "The %r theme has circular inheritance" +msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip valide ou ne contient aucun thème" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "Le thème %r a trop d'ancêtres" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:331 sphinx/theming.py:377 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "Le thème nommé %r n'a pas été trouvé (le fichier theme.conf est-il bien présent ?)" +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "Le thème %r doit définir la clé \"theme.inherit\" dans les paramètres" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -552,10 +594,10 @@ msgstr "l'image appropriée pour le constructeur %s n'a pas été trouvée : %s" #: sphinx/builders/__init__.py:207 msgid "building [mo]: " -msgstr "Construction en cours [mo] : " +msgstr "construction en cours [mo] : " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "Écriture... " @@ -604,97 +646,97 @@ msgstr "%d fichiers source saisis en ligne de commande" msgid "targets for %d source files that are out of date" msgstr "cibles périmées pour les fichiers sources %d" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " -msgstr "Construction [%s] : " +msgstr "construction [%s] : " #: sphinx/builders/__init__.py:316 msgid "looking for now-outdated files... " msgstr "Recherche des fichiers périmés... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d trouvé" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" -msgstr "aucun résultat" +msgstr "aucun résultat trouvé" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "Environnement de sérialisation" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" -msgstr "Vérification de la cohérence" +msgstr "vérification de la cohérence" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." -msgstr "Aucune cible n'est périmée." +msgstr "aucune cible n'est périmée." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " -msgstr "Mise à jour de l'environnement : " +msgstr "mise à jour de l'environnement : " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s ajouté(s), %s modifié(s), %s supprimé(s)" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " -msgstr "Lecture des sources... " +msgstr "lecture des sources... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" -msgstr "Document en préparation" +msgstr "documents en préparation" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" -msgstr "" +msgstr "copie des ressources" #: sphinx/builders/_epub_base.py:215 #, python-format msgid "duplicated ToC entry found: %s" -msgstr "Entrées dupliquées de la table des matières trouvées : %s" +msgstr "entrées dupliquées de la table des matières trouvées : %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "Copie des images... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "impossible de lire le fichier image %r: il sera copié à la place" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "impossible de copier le fichier image %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "impossible d'écrire le fichier image %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" -msgstr "Pillow introuvable - copie des fichiers image" +msgstr "Pillow n'a pas été trouvé - copie des fichiers image" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "écriture du type MIME du fichier ..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "écriture du fichier META-INF/container.xml..." @@ -702,470 +744,470 @@ msgstr "écriture du fichier META-INF/container.xml..." msgid "writing content.opf file..." msgstr "Enregistrement du fichier content.opf..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "mimetype inconnu pour %s, il sera ignoré" +msgstr "type MIME inconnu pour %s, il sera ignoré" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "Enregistrement du fichier toc.ncx..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "fichier %s en cours d'écriture..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Le fichier d'aperçu se trouve dans %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "aucun changement dans la version %s" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "écriture du fichier de résumé..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Fonctions de base" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Module" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." -msgstr "Copie des fichiers sources..." +msgstr "copie des fichiers sources..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "impossible de lire %r pour la création du changelog" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "Le constructeur factice ne génère aucun fichier." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Le fichier ePub se trouve dans %(outdir)s ." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "Enregistrement du fichier nav.xhtml..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "la variable de configuration \"epub_language\" (ou \"language\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "le paramètre de configuration \"epub_uid\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_title\" (ou \"html_title\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_author\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_contributor\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_description\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_publisher\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_copyright\" (ou \"copyright\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "Fichier CSS invalide : %r, sera ignoré" +msgstr "Fichier CSS non valide : %r, il sera ignoré" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "La liste des messages se trouve dans %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "cibles pour les modèles de fichiers %d" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "lecture des gabarits... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "écriture des catalogues de messages... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Recherchez les éventuelles erreurs dans la sortie ci-dessus ou dans %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "lien mort: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Échec de la compilation de la regex dans linkcheck_allowed_redirects : %r%s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Le manuel se trouve dans %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "aucun valeur de configuration \"man_pages\" trouvée; aucun page du manuel ne sera enregistrée" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" -msgstr "Enregistrement" +msgstr "enregistrement" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "le paramètre de configuration \"man_pages\" référence un document inconnu %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Les pages HTML sont dans %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "création du document unique" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "Enregistrement des fichiers supplémentaires" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Les fichiers Texinfo se trouvent dans %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nExécuter 'make' dans ce répertoire pour les soumettre à makeinfo\n(ou 'make info' directement ici pour l'automatiser)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "aucun paramètre de configuration \"texinfo_documents\" trouvé: aucun document ne sera écrit" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "La valeur du paramètre \"texinfo_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "Traitement de %s en cours" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "résolution des références..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(dans" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" -msgstr "Copie des fichiers de support Texinfo" +msgstr "copie des fichiers de support Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "erreur lors l'écriture du fichier Makefile : %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Les fichiers texte se trouvent dans %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "erreur lors l'écriture du fichier %s : %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Les fichiers XML se trouvent dans %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Le fichier pseudo-XML se trouve dans %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "Le fichier de configuration de construction est corrompu : %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Les pages HTML sont dans %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Échec de lecture du fichier de configuration de construction : %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index général" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "suivant" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "précédent" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" -msgstr "Génération des index" +msgstr "génération des index" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "Écriture des pages additionnelles" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "Copie des fichiers téléchargeables... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "impossible de copier le fichier téléchargeable %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Échec de la copie du fichier dans html_static_file : %s : %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "Copie des fichiers statiques" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "impossible de copier le fichier static %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" -msgstr "Copie des fichiers complémentaires" +msgstr "copie des fichiers complémentaires" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "Copie des fichiers supplémentaires impossible %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Échec d'écriture du fichier de configuration de construction : %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "L'index de recherche n'a pas pu être chargé, mais tous les documents ne seront pas construits: l'index sera incomplet." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "La page %s correspond à deux motifs dans html_sidebars: %r et %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "une erreur Unicode est survenue lors du rendu de la page %s. Veuillez vous assurer que toutes les valeurs de configuration comportant des caractères non-ASCII sont des chaînes Unicode." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "Export de l'inventaire des objets" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "Export de l'index de recherche en %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "Fichier js_file : %r invalide, sera ignoré" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer inconnu %r saisi." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "L’entrée %r de html_extra_path n’existe pas" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "L’entrée %r de html_extra_path se trouve à l’intérieur de outdir" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "L’entrée %r de html_static_path n’existe pas" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "L’entrée %r de html_static_path se trouve à l’intérieur de outdir" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "Le fichier de logo %r n’existe pas" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "Le fichier de favicon %r n’existe pas " -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" -msgstr "" +msgstr "HTML 4 n'est plus pris en charge par Sphinx. (\"html4_writer=True\" détecté dans les options de configuration)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Les fichiers LaTex se trouvent dans %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nExécuter 'make' dans ce répertoire pour les soumettre à (pdf)latex\n(ou 'make latexpdf' directement ici pour l’automatiser)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "aucune valeur de configuration \"latex_documents\" trouvée; aucun document de sera généré" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "La valeur du paramètre \"latex_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Version" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "Aucune option Babel disponible pour la langue %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" -msgstr "Copie des fichiers de support TeX" +msgstr "copie des fichiers de support TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "Copie des fichiers de support TeX..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "Copie de fichiers supplémentaires" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Clé de configuration inconnue : latex_elements[%r]; ignorée." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Option de thème inconnue : latex_theme_options[%r], ignoré." @@ -1180,18 +1222,18 @@ msgstr "%r n'a pas d'option « theme »" msgid "%r doesn't have \"%s\" setting" msgstr "%r n'a pas d'option « %s »" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" -msgstr "" +msgstr "Échec de l'obtention d'un nom de document !" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" -msgstr "" +msgstr "Échec de l'obtention d'un nom de document pour la source {source!r} !" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" -msgstr "" +msgstr "Aucune note de bas de page n'a été trouvée pour la référence de nœud %r donnée" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" @@ -1247,8 +1289,8 @@ msgstr "Un rapport d'erreur peut être déposé dans le système de tickets à < msgid "job number should be a positive number" msgstr "Le numéro du job doit être strictement positif" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "Pour plus d'informations, visitez le site ." @@ -1280,257 +1322,264 @@ msgid "path to output directory" msgstr "chemin du répertoire de sortie" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "une liste de fichiers spécifiques à reconstruire. Sera ignoré si l'option -a est spécifiée." +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "options générales" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "constructeur à utiliser (par defaut: HTML)" +msgid "builder to use (default: 'html')" +msgstr "constructeur à utiliser (par défaut: 'html')" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "enregistrer tous les fichiers (par défaut : enregistrer seulement les fichiers nouveaux ou modifiés)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "ne pas utiliser un environnement sauvegardé, relire toujours tous les fichiers" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "chemin pour le cache d'environnement et de fichiers doctree (défaut : OUTPUTDIR/.doctrees) " - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "build parallèle avec N processus si possible (la valeur spéciale \"auto\" ajuste N à cpu-count)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "chemin dans lequel se trouve le fichier de configuration (conf.py). (valeur par défaut : identique à SOURCEDIR)." +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "n'utilisez aucun fichier de configuration, seulement l'option -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "outre passer un paramètre du fichier de configuration" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "passer une valeur aux templates HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "définit une balise : seules les blocs \"only\" avec TAG seront inclus" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "mode sourcilleux, signale toute référence manquante" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "options de la console de sortie" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "augmenter la verbosité (peut être répété)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "aucune sortie vers stdout, seulement les avertissements vers stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "aucune sortie du tout, même pas les avertissements" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "émettre une sortie de couleur (par défaut : auto-détection)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "ne pas émettre une sortie de couleur (par défaut : auto-détection)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "écrire les avertissements (et les erreurs) vers le fichier spécifié" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "modifier les avertissements en erreurs" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "avec -W, l'exécution se poursuit en cas d'avertissements" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "montrer la trace d’appels complète si une exception est levée" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "exécuter Pdb si une exception se produit." -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "impossible de combiner l'option -a avec le nom du fichier" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "impossible d'ouvrir le fichier des avertissements %r : %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "l'option -D doit être sous la forme nom=valeur" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "l'option -A doit être sous la forme nom=valeur" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "insère automatiquement les docstrings des modules" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "tester automatiquement des extraits de code dans des blocs doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "lien entre la documentation Sphinx de différents projets" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "entrées \"todo\" pouvant être montrées ou cachées à la compilation" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "vérification de la couverture de la documentation" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "expressions mathématiques, traduites en images PNG ou SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "expressions mathématiques, transmises dans le navigateur à MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "inclusion conditionnelle du contenu basé sur la valeur de configuration" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "inclure des liens vers le code source documenté des objets Python" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "crée un fichier .nojekyll pour publier le document sur GitHub pages" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Merci de saisir un chemin valide." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Merci de saisir du texte." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Merci de saisir un des %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Merci de saisir 'y' ou 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Merci de saisir l'extension du fichier, par exemple '.rst' ou '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Bienvenue dans le kit de démarrage rapide de Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Veuillez saisir des valeurs pour les paramètres suivants (tapez Entrée pour accepter la valeur par défaut, lorsque celle-ci est indiquée entre crochets)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Chemin racine sélectionné : %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Saisissez le répertoire racine de la documentation." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "racine de la documentation." -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Erreur : un fichier conf.py a été trouvé dans le répertoire racine." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart n'écrasera pas un projet Sphinx existant." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Merci de saisir un nouveau répertoire racine (ou tapez juste Entrée)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Vous avez deux options pour l'emplacement du répertoire de construction de la sortie de Sphinx.\nSoit vous utilisez un répertoire \"_build\" dans le chemin racine, soit vous séparez les répertoires \"source\" et \"build\" dans le chemin racine." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Séparer les répertoires source et de sortie (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Dans le répertoire racine, deux autres répertoires seront créés : \"_templates\" pour les modèles HTML personnalisés et \"_static\" pour les feuilles de style personnalisées et autres fichiers statiques. Vous pouvez entrer un autre préfixe (p. ex. \".\") pour remplacer le tiret bas (\"_\")." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Préfixe de nom pour les répertoires static et de gabarits (templates)" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "Le nom du projet apparaîtra à plusieurs endroits dans la documentation construite." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Nom du projet" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Nom(s) de(s) l'auteur(s)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1539,15 +1588,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx a la notion de « version » et de « release » pour le\nlogiciel. Chaque version peut avoir plusieurs « releases ». Par exemple, pour\nPython, la version est quelque chose comme 2.5 ou 3.0, tandis que la « release » est\nquelque chose comme 2.5.1 ou 3.0a1. Si vous n'avez pas besoin de cette double structure,\nmettez simplement la même valeur aux deux." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Version du projet" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Version du projet" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1557,21 +1606,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Si les documents doivent être rédigés dans une langue autre que l’anglais, vous pouvez sélectionner une langue ici grâce à son identifiant. Sphinx utilisera ensuite cette langue pour traduire les textes que lui-même génère.\n\nPour une liste des identifiants supportés, voir\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Langue du projet" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "L'extension de fichier pour les fichiers sources. En général : \".txt\" ou \".rst\". Seuls les fichiers avec cette extension sont considérés." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Extension des fichiers sources" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1579,91 +1628,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Un document est particulier en ce sens qu'il est considéré comme le nœud supérieur de \"l'arbre des contenus\", c'est-à-dire la racine de la structure hiérarchique des documents. Normalement, il s'agit d'un \"index\", mais si votre \"index\" est un modèle personnalisé, vous pouvez également le définir sous un autre nom de fichier." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Non du fichier principal (sans extension)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Erreur : le fichier principal %s est déjà présent dans le répertoire racine du projet." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart n'écrasera pas les fichiers existants." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Merci de saisir un nouveau nom de fichier, ou de renommer le fichier existant et valider avec Entrée" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Indiquer lesquelles de ces extensions Sphinx doivent être activées :" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Note : imgmath et mathjax ne peuvent pas être activés en même temps. imgmath a été désactivé." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Un fichier Makefile et un fichier de commandes Windows peuvent être générés pour vous, afin que vous puissiez exécuter par exemple `make html' au lieu d'appeler directement sphinx-build." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Création du Makefile ? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Création du fichier de commandes Windows ? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Fichier en cours de création %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Le fichier %s existe déjà, il ne sera pas remplacé" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Terminé : la structure initiale a été créée." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Vous devez maintenant compléter votre fichier principal %s et créer d'autres fichiers sources de documentation. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Utilisez le Makefile pour construire la documentation comme ceci :\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Utilisez sphinx-build pour construire la documentation comme ceci : \n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "où « builder » est l'un des constructeurs disponibles, tel que html, latex, ou linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1673,135 +1722,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nEngendre les fichiers requis pour un projet Sphinx.\n\nsphinx-quickstart est un outil interactif qui pose des questions à propos de votre projet et génère un répertoire avec la structure complète nécessaire ainsi qu'un Makefile qui peut être utilisé comme alternative à sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "mode silencieux" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "racine du projet" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Options de structure" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "si spécifié, les répertoires source et build seront séparés" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "si spécifié, créé le dossier build dans le dossier source" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "remplace le point dans _templates etc." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Options basiques du projet." -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "nom du projet" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "nom de l'auteur" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "version du projet" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "version du projet" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "langue du document" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "préfixe des fichiers source" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "nom du document principal" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "utilisé epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Options d'extension" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "autoriser l'extension %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "active l'emploi d'extensions quelconques" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Création des fichiers Batchfile et Makefile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "créer un fichier makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "ne pas créer un fichier makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "créer un fichier batch" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "ne pas créer un fichier batch" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "ne pas utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Gabarits de projet" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "répertoire des templates" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "définissez une variable de template" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "vous avez spécifiez \"quit\" , mais \"project\" ou \"author\" ne sont pas spécifiés." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Erreur : le chemin spécifié n'est pas un répertoire, ou les fichiers Sphinx existent déjà." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart peut générer ces fichiers seulement dans un répertoire vide. Merci de spécifier un nouveau répertoire racine." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Variable de template invalide : %s" @@ -1852,47 +1901,47 @@ msgstr "On ne peut pas utiliser \"lineno-match\" avec un \"lines\" non contigu " msgid "Line spec %r: no lines pulled from include file %r" msgstr "Spécification de lignes %r : aucune ligne extraite du fichier inclus %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "le motif global toctree %r ne correspond à aucun document" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "le toctree contient une référence à des documents exclus %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "la table des matières contient des références à des documents inexistants %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "entrée dupliquée trouvée dans toctree: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Auteur de la section : " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Auteur du code : " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Auteur : " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "... le contenu de acks n'est pas une liste" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "... le contenu de hlist n'est pas une liste" @@ -1907,82 +1956,10 @@ msgstr "L'option \":file :\" de la directive csv-table reconnaît désormais un msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Déclaration C dupliquée, également définie à %s:%s.\nLa déclaration est '.. c:%s:: %s'." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Paramètres" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "Valeurs retournées" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Renvoie" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Type renvoyé" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membre" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variable" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "fonction" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "structure" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "union" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "énumération" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "énumérateur" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "type" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "paramètre de fonction" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nouveau dans la version %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1994,346 +1971,423 @@ msgstr "Modifié dans la version %s" msgid "Deprecated since version %s" msgstr "Obsolète depuis la version %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "Supprimé dans la version %s" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "citation dupliquée %s, une autre instance dans %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "La citation [%s] n'est pas référencée" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Déclaration C++ dupliquée, également définie à %s:%s.\nLa déclaration est '.. cpp:%s:: %s'." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Paramètres du modèle" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Déclenche" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "classe" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "concept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "paramètre du modèle" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Déclenche" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Renvoie" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Type renvoyé" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "fonction" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "classe" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "module" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "description de %s dupliquée pour%s; l'autre %s se trouve dans %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format invalide : %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directive)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Lève" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (option de directive)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (role)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directive" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "option de directive" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "role" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "description dupliquée pour %s %s; l'autre instance se trouve dans %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Déclaration C dupliquée, également définie à %s:%s.\nLa déclaration est '.. c:%s:: %s'." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Paramètres" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Valeurs retournées" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membre" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variable" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "structure" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "union" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "énumération" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "énumérateur" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "type" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "paramètre de fonction" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Paramètres du modèle" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Déclaration C++ dupliquée, également définie à %s:%s.\nLa déclaration est '.. cpp:%s:: %s'." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concept" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "paramètre du modèle" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (propriété %s)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "exception" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "propriété" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" -msgstr "" +msgstr "description dupliquée de l'objet %s, autre instance dans %s, utiliser :no-index: pour l'un d'eux" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (obsolète)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directive)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (option de directive)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (role)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directive" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "option de directive" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variables" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "description dupliquée pour %s %s; l'autre instance se trouve dans %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Lève" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variable d'environnement; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "description de l'option malformée, elle doit ressembler à \nMalformed option description %r, should look like \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" or \"+opt args\"" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "option de ligne de commande %s" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "option de ligne de commande" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "le terme du glossaire doit être précédé d'une ligne vide" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "les termes du glossaire ne doivent pas être séparés par des lignes vides" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "le glossaire semble être mal formaté; vérifiez l'indentation" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "terme du glossaire" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "élément de grammaire" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "étiquette de référence" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variable d'environnement" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "option du programme" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "document" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Index du module" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Page de recherche" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "libellé dupliqué %s, l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "description %s dupliquée pour %s; l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignoré" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Impossible de créer une référence croisée. Aucun nombre n'est attribué: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "le lien n'a pas de légende : %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format invalide : %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format invalide : %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "label non défini: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Échec de création d'une référence. Ni titre ni légende trouvé : %r" @@ -2350,35 +2404,35 @@ msgstr "la configuration a changé" msgid "extensions changed" msgstr "les extensions ont changé" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "version non à jour de l’environnement de construction" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "le répertoire racine a changé" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Cet environnement est incompatible avec le constructeur sélectionné, veuillez choisir un autre répertoire doctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Échec du scan des documents dans %s : %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "Le document n'est inclus dans aucune toctree." -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "une table des matières auto-référencée a été trouvée. Elle sera ignorée." @@ -2402,39 +2456,39 @@ msgstr "type d'index saisie inconnu %r" msgid "Symbols" msgstr "Symboles" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "table des matières avec une référence circulaire détectée, elle sera ignorée : %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "la table des matières contient une référence à un document %r qui n'a pas de titre : aucun lien ne sera généré" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "toctree contient une référence au document non inclu %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "fichier image %s illisible " -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "fichier image %s illisible : %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "le fichier téléchargé n’est pas lisible: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s a déjà des numéros de section attribués (toctree numérotés emboîtés ?)" @@ -2444,7 +2498,7 @@ msgstr "%s a déjà des numéros de section attribués (toctree numérotés embo msgid "Would create file %s." msgstr "Créerait le fichier %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2456,149 +2510,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nCherche récursivement dans des modules et packages Python et crée\ndans un fichier reST par package avec des directives automodule.\n\nLes s peuvent être tout pattern de fichiers et/ou de répertoires à exclure.\n\nNote : par défaut ce script n'écrasera pas des fichiers déjà créés." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "chemin vers le module à documenter" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "patterns de fichier fnmatch-style et/ou répertoire à exclure" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "Nombre maximum de sous-modules visibles dans la table des matières (par défaut : 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "remplacer les fichiers existants" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "suivre les liens symboliques. Très utile en combinaison avec collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "exécuter le script sans créer les fichiers" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "afficher la documentation de chaque module sur sa propre page" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "inclure le module \"_private\"" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "nom du fichier de table des matières (défaut : modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "ne pas créer de fichier de table des matières" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "ne pas créer de titres pour le module ou package (e.g. lorsque les doctrings en fournissent déjà)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "mettre la documentation du module avant celle du sous-module" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interprète les chemins de module selon la spécification PEP-0420 des espaces implicites de noms" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "extension du fichier (par défaut : rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "générer un projet complet avec sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "ajoute module_path à la fin de sys.path, utilisé lorsque --full est présent" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "nom du projet (par défaut : nom du module principal)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "auteur(s) du projet, utilisé quand l'option -full est précisée" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "version du projet, utilisé quand l'option -full est précisée" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "révision du projet, utilisé lorsque --full est présent, par défaut reprend --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "options relatives aux extensions" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s n'est pas un répertoire" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "la section \"%s\" est étiquettée \"%s\"" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "regex invalide %r dans %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Vérification du taux de couverture documentaire dans les sources achevée, voir les résultats dans %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "regex invalide %r dans coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API C non documentée : %s [%s] dans le fichier %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "le module %s ne pas être importé : %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "fonction python non documentée: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "classe python non documentée: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "méthode python non documentée: %s :: %s :: %s" @@ -2622,24 +2676,24 @@ msgstr "%s n'est pas une option pyversion valide" msgid "invalid TestCode type" msgstr "type invalide de TestCode" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Exécution des doctests des sources achevée, voir les résultats dans %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "pas de code ou sortie dans le bloc %s en %s : %s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "code doctest invalide sera ignoré : %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== durées de lecture les plus lentes =======================" @@ -2650,32 +2704,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "le lien %r codé en dur pourrait être remplacé par un extlink (essayez d'utiliser %r à la place)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "La directive Graphviz ne peut pas avoir simultanément du contenu et un argument de nom de fichier" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Fichier externe Graphviz %r non trouvé ou échec de sa lecture" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Directive « graphviz » sans contenu ignorée." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" -msgstr "" +msgstr "Le chemin de l'exécutable de graphviz_dot doit être défini ! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "la commande dot %r ne peut pas être exécutée (nécessaire pour le rendu graphviz). Vérifiez le paramètre graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2685,7 +2739,7 @@ msgid "" "%r" msgstr "dot a terminé avec une erreur :\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2695,27 +2749,27 @@ msgid "" "%r" msgstr "dot n'a pas produit de fichier de sortie : \n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format doit être « png » ou « svg », mais est %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "dot code %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graphe: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graphe]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2723,7 +2777,7 @@ msgid "" "Traceback: %s" msgstr "Impossible d’exécuter la commande de conversion d'image %r. 'sphinx.ext.imgconverter' nécessite par défaut ImageMagick. Assurez-vous que ce dernier est installé, ou configurez l’option 'image_converter' pour faire référence à une commande de conversion ad hoc.\n\nTrace d’appels : %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2733,173 +2787,178 @@ msgid "" "%r" msgstr "convert a terminé avec une erreur :\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "la commande convert %r ne peut pas être exécutée; vérifiez le paramètre image_converter" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "La commande LaTeX %r (nécessaire pour le rendu des équations mathématiques), ne peut pas être exécutée, vérifier le paramètre imgmath_latex" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "La commande de %s, %r, ne pas être exécuté (nécessaire pour display mathématique), vérifier la configuration imgmath_%s" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "latex de type display %r : %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "latex en ligne %r : %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" -msgstr "" +msgstr "Lien vers cette équation" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "l’inventaire intersphinx a bougé : %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "chargement de l'inventaire intersphinx de %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "quelques problèmes ont été rencontrés avec quelques uns des inventaires, mais ils disposaient d'alternatives fonctionnelles :" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "échec d'accès à un quelconque inventaire, messages de contexte suivants :" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(dans %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "inventaire pour la référence croisée externe non trouvé : %s" +msgid "inventory for external cross-reference not found: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "rôle pour la référence croisée externe non trouvé : %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "%sexterne :%s cible de référence non trouvée : %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "l’identifiant intersphinx %r n'est pas une chaîne. Il sera ignoré" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Échec de la lecture de intersphinx_mapping[%s]; ignoré : %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "À faire" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "Entrée TODO trouvée : %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(l'<> se trouve dans %s, à la ligne %d)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "entrée originale" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "Coloration syntaxique du code du module..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Code du module" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Code source de %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Vue d'ensemble : code du module" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Modules pour lesquels le code est disponible

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "valeur invalide pour l'option member-order : %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "valeur invalide pour l'option class-doc-from : %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "signature invalide pour auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc : n'a pas réussi à déterminer %s.%s (%r) devait être documenté, l'exception suivante a été levée :\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2907,112 +2966,112 @@ msgid "" "explicit module name)" msgstr "module à importer pour auto-documenter %r est inconnu (essayer de placer une directive \"module\" ou \"currentmodule\" dans le document, ou de donner un nom de module explicite)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "Un faux objet a été détecté : %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "erreur lors du formatage de la signature pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" dans le nom d'automodule n'a pas de sens" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "arguments de signature ou annotation de return donnés pour l’automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ devrait être une liste de chaînes, pas %r (dans module %s) -- __all__ sera ignoré" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "attribut manquant mentionné dans l'option :members: : module %s, attribut %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Échec pour obtenir la signature du constructeur pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Invalide __slots__ trouvé sur %s. Ignoré." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Impossible d'analyser une valeur d'argument par défaut pour %r : %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "Échec de la mise à jour de la signature pour %r : paramètre non trouvé : %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "Échec de l'analyse de type_comment pour %r : %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary fait référence au document exclu %r. Ignoré" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Un résumé automatique sous-titré nécessite l'option :toctree:. Ignoré." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3020,26 +3079,26 @@ msgid "" "%s" msgstr "autosummary : échec de l'importation de %s.\nIndications possibles :\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "échec de l’analyse du nom %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary engendre les fichiers .rst de manière interne. Mais votre source_suffix ne contient pas .rst. Ignoré." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3112,99 +3171,99 @@ msgid "" "%(default)s)" msgstr "documenter exactement les membres dans l'attribut __all__ du module. (par défaut : %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Arguments de mots-clés" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Exemple" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Exemples" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Notes" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Autres paramètres" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "Reçoit" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Références" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Avertissements" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "ensemble invalide de valeurs (accolade fermante manquante) : %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "ensemble invalide de valeurs (accolade ouvrante manquante) :%s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "chaîne littérale malformée (guillemet fermant manquant) : %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "chaîne littérale malformée (guillemet ouvrant manquant) : %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Attention" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Prudence" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Danger" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Erreur" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Indication" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Note" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Voir aussi" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Astuce" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Avertissement" @@ -3236,7 +3295,7 @@ msgid "Table of Contents" msgstr "Table des matières" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Recherche" @@ -3334,7 +3393,7 @@ msgstr "Copyright" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "" +msgstr "© %(copyright_prefix)s %(copyright)s." #: sphinx/themes/basic/layout.html:212 #, python-format @@ -3369,34 +3428,22 @@ msgstr "Sujet suivant" msgid "next chapter" msgstr "Chapitre suivant" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Veuillez activer le JavaScript pour que la recherche fonctionne." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Une recherche sur plusieurs mots ne retourne que les résultats contenant tous les mots." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "rechercher" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Résultats de la recherche" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Votre recherche ne correspond à aucun document. Veuillez vérifier que les mots sont correctement orthographiés et que vous avez sélectionné assez de catégories." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Recherche rapide" @@ -3433,20 +3480,30 @@ msgstr "Modifications de l'API C" msgid "Other changes" msgstr "Autres modifications" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Résultats de la recherche" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Votre recherche ne correspond à aucun document. Veuillez vérifier que les mots sont correctement orthographiés et que vous avez sélectionné assez de catégories." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "Recherche terminée, ${resultCount} page(s) correspondant à la requête de recherche ont été trouvées." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Recherche en cours" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Préparation de la recherche..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", dans " @@ -3467,30 +3524,30 @@ msgstr "Agrandir la barre latérale" msgid "Contents" msgstr "Contenu" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" -msgstr "" +msgstr "impossible de calculer l'avancement de la traduction !" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" -msgstr "" +msgstr "pas d'éléments traduits !" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "index trouvé avec style ancien à 4 colonnes. Possiblement un bogue d’extensions que vous utilisez : %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "La note de bas de page [%s] n'est pas référencée." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "La note de bas de page [#] n'est pas référencée." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3502,13 +3559,13 @@ msgid "" "{1}" msgstr "incohérences de références dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "incohérences de références de citation dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3535,97 +3592,97 @@ msgstr "%s:%s cible de référence non trouvée : %s" msgid "%r reference target not found: %s" msgstr "%r cible de référence non trouvée : %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "impossible d'atteindre l'image distante %s[%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "impossible d'atteindre l'image distante %s[%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Format d'image inconnu : %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "le caractère source est indécodable, il sera remplacé par \"?\" : %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "ignoré" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "échoué" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "Problème dans le domaine %s : le champ est censé utiliser le rôle '%s', mais ce rôle ne figure pas dans le domaine." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "nom de rôle ou de directive inconnu: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "type de node inconnu : %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "erreur de lecture : %s,%s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "erreur d'écriture : %s,%s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" -msgstr "" +msgstr "locale_dir %s n'existe pas" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Format de date invalide. Insérez la chaîne de caractères entre des guillemets simples si vous voulez l'afficher telle quelle : %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -msgstr "" +msgstr "%r est obsolète pour les entrées d'index (à partir de l'entrée %r). Utilisez plutôt 'pair:%s'." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "la table des matières contient des références à des fichiers inexistants %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exception pendant l’évaluation de l'expression de la directive only : %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "rôle par défaut %s introuvable" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" -msgstr "" +msgstr "Lien vers cette définition" #: sphinx/writers/html5.py:397 #, python-format @@ -3639,29 +3696,29 @@ msgstr "Aucun ID assigné au node %s" #: sphinx/writers/html5.py:462 msgid "Link to this term" -msgstr "" +msgstr "Lien vers ce terme" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" -msgstr "" +msgstr "Lien vers cette rubrique" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" -msgstr "" +msgstr "Lien vers ce tableau" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" -msgstr "" +msgstr "Lien vers ce code" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" -msgstr "" +msgstr "Lien vers cette image" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" -msgstr "" +msgstr "Lien vers cette table des matières" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée." @@ -3678,13 +3735,13 @@ msgstr ":maxdepth: trop grand, ignoré." msgid "document title is not a single Text node" msgstr "le titre du document n'est pas un unique node de type Text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "le titre de node rencontré n'est apparenté à aucun parmi section, topic, table, admonition ou sidebar" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notes de bas de page" @@ -3703,20 +3760,20 @@ msgstr "%s est invalide comme unité de dimension. Ignoré." msgid "unknown index entry type %s found" msgstr "le type inconnu d’entrée d’index %s a été trouvé" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "la légende n'est pas à l'intérieur de la figure." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "type de node non-implémenté : %r" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 312f50f5747d06a736183d9683aa658581df4a39..72fdf6a85757cbecb3bf83422ee4a8e26f96a2a8 100644 GIT binary patch delta 30 lcmZ3@vYKT=Gp~uRfr+l6iGq=_m67?z3DX!^P4o=77yyB^2X_Df delta 30 lcmZ3@vYKT=Gq16(frYN2xq_jIm8r$X3DX!^jr0t;7yyDt2Y>(o diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index a24e259bdc9..dd032199b47 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://app.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: fr_FR\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/gl/LC_MESSAGES/sphinx.js b/sphinx/locale/gl/LC_MESSAGES/sphinx.js index fc63ba36494..48fbe9cf285 100644 --- a/sphinx/locale/gl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/gl/LC_MESSAGES/sphinx.js @@ -1,60 +1,60 @@ Documentation.addTranslations({ "locale": "gl", "messages": { - "%(filename)s — %(docstitle)s": "", - "© %(copyright_prefix)s %(copyright)s.": "", - ", in ": "", - "About these documents": "", - "Automatically generated list of changes in version %(version)s": "", - "C API changes": "", - "Changes in Version %(version)s — %(docstitle)s": "", - "Collapse sidebar": "", - "Complete Table of Contents": "", - "Contents": "", - "Copyright": "", - "Created using
Sphinx %(sphinx_version)s.": "", - "Expand sidebar": "", - "Full index on one page": "", - "General Index": "", - "Global Module Index": "", - "Go": "", - "Hide Search Matches": "", - "Index": "", - "Index – %(key)s": "", - "Index pages by letter": "", - "Indices and tables:": "", - "Last updated on %(last_updated)s.": "", - "Library changes": "", - "Navigation": "", - "Next topic": "", - "Other changes": "", - "Overview": "", - "Please activate JavaScript to enable the search\n functionality.": "", - "Preparing search...": "", - "Previous topic": "", - "Quick search": "", - "Search": "", - "Search Page": "", - "Search Results": "", - "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.": "", - "Show Source": "", - "Table of Contents": "", - "This Page": "", - "Welcome! This is": "", - "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", - "all functions, classes, terms": "", - "can be huge": "", - "last updated": "", - "lists all sections and subsections": "", - "next chapter": "", - "previous chapter": "", - "quick access to all modules": "", - "search": "", - "search this documentation": "", - "the documentation for": "" + "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", + "© %(copyright_prefix)s %(copyright)s.": "© %(copyright_prefix)s %(copyright)s.", + ", in ": ", en ", + "About these documents": "Sobre estes documentos", + "Automatically generated list of changes in version %(version)s": "Lista xerada automaticamente de cambios na versi\u00f3n %(version)s", + "C API changes": "Cambios na API C", + "Changes in Version %(version)s — %(docstitle)s": "Cambios na versi\u00f3n %(version)s — %(docstitle)s", + "Collapse sidebar": "Contraer a barra lateral", + "Complete Table of Contents": "\u00cdndice completo", + "Contents": "Contidos", + "Copyright": "Dereitos de autor\u00eda", + "Created using Sphinx %(sphinx_version)s.": "Creado usando Sphinx %(sphinx_version)s.", + "Expand sidebar": "Expandir a barra lateral", + "Full index on one page": "\u00cdndice completo nunha p\u00e1xina", + "General Index": "\u00cdndice xeral", + "Global Module Index": "\u00cdndice global de m\u00f3dulos", + "Go": "Ir", + "Hide Search Matches": "Agochar as coincidencias da busca", + "Index": "\u00cdndice", + "Index – %(key)s": "\u00cdndice – %(key)s", + "Index pages by letter": "\u00cdndice de p\u00e1xinas por letra", + "Indices and tables:": "\u00cdndices e t\u00e1boas:", + "Last updated on %(last_updated)s.": "\u00daltima actualizaci\u00f3n o %(last_updated)s.", + "Library changes": "Cambios na biblioteca", + "Navigation": "Navegaci\u00f3n", + "Next topic": "Seguinte tema", + "Other changes": "Outros cambios", + "Overview": "Vista xeral", + "Please activate JavaScript to enable the search\n functionality.": "Active JavaScript para activar a funci\u00f3n\n de busca.", + "Preparing search...": "Preparando a busca\u2026", + "Previous topic": "Tema anterior", + "Quick search": "Busca r\u00e1pida", + "Search": "Busca", + "Search Page": "P\u00e1xina de busca", + "Search Results": "Resultados da busca", + "Search finished, found ${resultCount} page(s) matching the search query.": "Busca finalizada, atoparonse ${resultCount} p\u00e1xinas coincidentes coa consulta de busca.", + "Search within %(docstitle)s": "Buscar dentro do/a %(docstitle)s", + "Searching": "Buscando", + "Searching for multiple words only shows matches that contain\n all words.": "Ao buscar varias palabras s\u00f3 se amosan as coincidencias que\n conte\u00f1an todas as palabras.", + "Show Source": "Amosar o c\u00f3digo fonte", + "Table of Contents": "\u00cdndice", + "This Page": "Esta p\u00e1xina", + "Welcome! This is": "D\u00e1moslle a benvida! Isto \u00e9", + "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A s\u00faa busca non coincide con ning\u00fan documento. Aseg\u00farese de que todas as palabras estean escritas correctamente e de que seleccionou categor\u00edas abondo.", + "all functions, classes, terms": "todas as funci\u00f3ns, clases, termos", + "can be huge": "pode ser enorme", + "last updated": "\u00faltima actualizaci\u00f3n", + "lists all sections and subsections": "lista todas as secci\u00f3ns e subsecci\u00f3ns", + "next chapter": "seguinte cap\u00edtulo", + "previous chapter": "cap\u00edtulo anterior", + "quick access to all modules": "acceso r\u00e1pido a todos os m\u00f3dulos", + "search": "buscar", + "search this documentation": "buscar esta documentaci\u00f3n", + "the documentation for": "a documentaci\u00f3n para" }, "plural_expr": "(n != 1)" }); \ No newline at end of file diff --git a/sphinx/locale/gl/LC_MESSAGES/sphinx.mo b/sphinx/locale/gl/LC_MESSAGES/sphinx.mo index aaa18b8e848fbe3b6e9a4e7cca1d136ee1095581..741e6fd49633373decc9d492ef7f7e78eda6f527 100644 GIT binary patch literal 82300 zcmce<37lPJegA)=f-r2d2#72v14AZ|xgiM%3?vYe0MTqF6F_5}+?ji4a?Q-W!@YO1 zfLL7WuKcWZsajjys!g#{R4PjQGgF~z)oR_f{9UTGin~>7)&Aa}@ArAmId_(XXkUL{ zn9rPZpYxn&`R>p6dCo&8J?1qD|NG{nlH^SA;?s1M|8HF>NnSWFN!EjRQ0B9XljQsS zTv?hVYq-C8S&}rle*MKsG6o)VNs=4~?gftkUkF|Rz8ridcrUmdy!J^+aw+%%@Otn= z;8oxe-0TL|fJcKn!K1(?*aO}Qs-1U&=YW3)J_URToDW`bnZI`(crw?U!4ts|@NwW? zQ1!k9JO+Fo(kRrs@%uG<-2W~30j|%zf_H=e z3aURRUYR711SyTm)VOUIpsC6QJhl z<>2eU&w)eW_=+Uq)yY4DnvY|d#K(h+K&CXg228UhU5ffjhWY5}uA3PsC0$dOB zQ?dorJiQ(iUwj=Def3@I<8UpgaoYgGiph1gZ~^!$up8`N>-X1yy50vu+R2;1 zbHOiwj|Kl5oDV+w$^Lr}sQK9err_=1(cqoo_x+&8|J$JE_cx&Wc?^T{DDWJRAx^r% z9pDIf0r()Oaz6nd10K1K_RZrtQ182Hz4vnv)cal;u3rxx!S#cn=~4f_3oU zK}amQVTnDJxGEdinr*OUf27kT@9>?|bLDl~%@F?&;@bTajsQ!HkJRkfw zP;`CFjY(1iH-JmQzXjKV-vciOFS*Ib;aLG+3ZBOOzYKT)+{g8o!IQxOChK@`C%7Hl z1M2;s1J%#(fue_BgBri1>Fi116F^-r0>uwkg6DxdK-K$)pq~2^@JR3-p!#c#b58-)j~l`3!4dF@;9rB{ zhmV7>PVzZW@0|}(svV0!wQD(eDtIk;A-Ek>y)OZGfv*9j2j($IYRA=}`n?70V}AF5 zqR+QK)BAHTsP_FmsQNz(>i2&IH9kKC8Pep@gHAu&!3((lTW}fpO>i-I+773W>%bD% z6W}KB&%g=rN8mYNx$OM*Tu}1rt)S-P0Wbx>2Ufvjhx~m_a0Az$00+P`hkbl*279=^ zA5^{H1YZO`y5fBQGVolk{~eUPJcdejy$lo`-U#aco#1@%qu_Gzd*G$u!V#a3GWZ6r zcY#!u968Ffx(0WHQ=sO#e<$w-SAvfL*MKSbWbm`#E>PojHB6!TYlE8imw_6GzX0{# zkAYW$k9wAm`&Ho4T>lC9Sn#dj5#WAMe0w)2`gjNwKl~6>dyaq@J_;TSYW_YCz7)J@ z%=Oj>K|TLtQ0+K-JoE!RhU=A}-nTwnZw=RF@F?!rK+Q`Nd>Qy*uutXd&hNK^s^{IH z=<7c4EbvpH=<@rZ+MP7eiNJ~A8Q@bu^>+k37MuWgfVY8a??d2H@EC~d5^x0w$tP{_ zV(`=8dhp1bogN3k>$tuRR69NbYMj3eYP?Qrx}NR@H7{jQ@81jdfX@Tf?stMGfDZ)x zJgEMC8$2KU33wj(gckn?SAcr%CQ$v_4T?@*1+E0|1`!p>PeF~_hPK;h&j!!r`i-F4 z`?sLz^Aq4@;15B~fA6G^PYFDk>nlLb*G5qNyAga6cn5d|_yD*Td=x~h>vdp1_+s#S za0=8s9J|NI>soLr*RKrtVeojae+FI*K6Pk@@whrks4HK_KS z^=zNNrJ&lm13VSn3oZfg051SP3_c!w7!?0J>Nb~;$AD_*GeEun72t{BdqMT@0Z{$< zA$TVEKLO8tj??GmAR;Rn1n&et0&0Fn|G@kGCQ#4c2|f+H8@vKM=609U*MVnqy&Keg zyav>`yc;Zm9|cw4FTo4JzUTV&(?GTFmErnc@FuPw236mh=Xv`opyuzPcFHybXYtfzJdb2VMt4 z`pLIIjqA2Qbh;V`#do)Zl9%rW)$jL#n#X?zSAyRG)t(Dp=>56`)VK_QSAow5#aC0H z${+V4uV*8ud3_crdUzvv9r!ok2Jly)=wR)Oy*-;j%~KUr{gdJT+dz%~z2I@+!=U8g zufS#Cf|vOHZJ_Sgz~$g;!Rx`#f})$VUh4X;A5^=Bz+Ujxpy>2N;9~Fxpz1mMWiEG~ z0%|_TLCxRGL5N98~*HzQgHa6{vP^2Q~iB2G0jy4bBJe z1J&-Yf(yZ;{!ifJfIC2ye?o$_}}0KD*q~%v&+D4u6KbN&sTyPr+Y!Q?_WT* z@5kZ(@qgsyF96m5^`Pi&3#fVC74XkN(f{W_wd1>>`1ZtCJH4(CH~{MX+d%c}IiTkK z&%^Kk0iMhCkHE)*r~I+|Q)hyga9s}9uLHZd{wnww@ZUl8_hC@||1a&>9X;}1af^NrwY@E%a@{UxaPp7A<=t_RdOt_{~s@OZ9Y z8}7dylsxz(Xzc{W?+=41*z;NO5pfe(O>13v|-KVJin z1CRU@fA1-v`f)C(@z?~aecM5e%L~K(e*#4pUjkL{W8UC=bsTsp*H?iWhdrSB`)cqc z@Xg@k!Mj1V>%nmS74QVEe+;VJyf-=>oC2Q4^%bD{zXiM)ya`nQUID5fZvl@4{}CJp zKLtJkT=pg(_w}HDZ-B>uyTJwE^T2-aFToW27I-yyjtQPy#myG z?*W&U0X`A@1Sr1$5Ad1bJ|~1CIb-45}Tk1pC1I zK=toCpvoQpcAuvU0-vNr=?g#bW2g3DtL5@!=U8Dsej?moeiGP^%C%O@TPz_gKFPPLAB={py=U4;rB0r8mFItdjGNS zbb37};HBVa=0QK;Ltyt`Qs&Xn_g}$>Tp$0}ybC<%J@72g@4XwD2L1*V-#q(o+|POu zcoEkx0~zY%L*O=W$3021RoCEc;7RX=SHb@Sc7s0vMQy1zZH}`doQT=OojX3 z1|?s90UiZD=3Z~tao{anUkPfQ?*-Ma&w{G=^1t_4|qG4fXlcZ0RIhqF?b0$exLW}t>9z1{%cUc0q+1IiR3HbF7O5SyFKtDP~&vf-#NVxf&E!9kp^8fmL zT?cBsZUWbWF9MfyLpO!B2r3z;hmOeNYF_;`*;ajq@i!z3+3N z#_1tY^WOWQ_kT60_H75(fNfCyy)Rs!{*Ul3*UtpizP|@ogQtDeub%;~;QGDbD)6V^ zHQ=QmbNO})cqP{#2iJl}ecbJo&ETb6zX8-ZeFjuNdj84V-3Ha~XM>l6cY=$+uYi)v zM}5Ne@RLBj?^^I|@Fn1J;5)%H!1sfX0zVDj1b!BLCfN5$*Uv8p=X3pGQ1tapa9|$t z2t1eTRsZbv>nNz-Uk9o^Zvh_*eib|o{5MeJ{%i1h@QhD8Uk`)FP~RT#IPO3HGp^5G z1&Ut&5qt~y5I77z_g`G!d<)e3kNK?A$zt$!uGfJVfS&;Og1-b+&&{7Bwhg`rRC~Sz zYMy@#J^?)L^L~E;_;{|b0yXbj!}S<=5!cTH)z5ptmEhlj8lU6~v<>J6#gA_TCAaV4T7l0byyFm4G3fuvH8axYJ z`u}-5H-Q?bVeoXY4XVCZ1bhp48Q1rM=Yu~2p9r4zHLrIWsBu{d9tmCtieEN>>Te4? z7W@NH_Ug;QlfXBDqT9a)Q}A9;?foLC`hEba9X|urzN5eH^Lz$)6W1j$1z!YeKHdp# z2k!>;-V?sz?|C99Ix2x`_vPRca4UE!_#*H*;G4lU;91}FaTo@das6y?^*rn#Q0@EA ze{(%?%(q~A|gtN}}0?*=tqZwJLs9|Ofd z{|Wvfc-_A{|9t{HpX(okqUY1U9NetOCG+@AS2a52}9d)VJ|H7Gu5fPLVHzzf0ef>(j3e&6Z!2Jl#}{}{Xv zyc1M=p78@>c;M&3=Yv=M(C29iJc8>_fhT~U1J4A%1s>11Kk7%cnd=jO?0j<*sCMrK z7lMBZt^ywfuK|zwiPOObu#4-z0!0t^f|{Qx@M`empx$%rPhCDQ1XXS|2rDO>z+v#h zpW%~&cYsgU^?!zW18v?w_4i|-`27o@-urD(_5B#sdw&BS1s?Hpr{CkjKjV57><1tF z3m?a8Kt1<7Q1t&wup4|UcsBR|C_eobxE%Z~crJM5FTMU9;AvdfK#liv!Rx{Af*ZhP z{}udmu)_7nz_sAwUtybq`@p5(m%tmrWB=RbOa;7->*s(e_yDMS{~eqUUi53{)6L+; zTn~enfUgHn20t0_8=&U-=irs#k-zbBtH2W1`@kjOJHz#t!6$Kj^lzO$uLf`D`iQ~hgOi}HzW{CodmlB=f8;#t=Q*J6Ukg4S90kt?ZwvR| z1nT+w!K=U@gX+(c$Ii3)c^-HY*RKV|NAChPUJrvk;7`K+(~t7^Yy(x_v%yQj_kc%( z-vKXEc~JCw;nDMqPp$@4PZiYtmw_w6KL<4r-vBjEzXsQUkMEjia%LMSdU^?{`u`3b z1pg6S4)$WytOG~DlfipH-G2}iA02V5xA#P_m+PhBdK=i{`q|(C@JFEd@Sfwm-#-A= zuAhM_cRa#Ka^`v9V(O(ak>@MxV#P2^ACYHfIkPfgX>Rs ze%%kMUGD`YPd*N+{;z;)*W;cr&*Z~-;E7yULDjnl)I8n|YMlNvTpx3W^Z!P0lKZa( zyTN0hIM3o61SJ)&Dy|$??AhuK~|WeSUX0i(c^!En%`C3-rjLg$A^wc{K>`=K7C7we#rneB4t|d|v?`A%2qr!AOfN42pUCA}Q0=UO8uyoi zM}YT$l5ZaXCC|PHs{f~-?{vBil-z8ClGlF$9tr*e)cE}t)ccQI;QcOv>$%

i0K; z7l7{oj{-jpZUw&#YQ8S&ooD$5bx`y+1*+T^K*`asfg|8g!5aAVh4V}w{{wh6*L@dw z|LUOl=cQmDcrSPv_$^TVJ^MoM|8=0~Zwyqs?+5jsZ-JVZUxJdu-HZJ9r-RZD&jU4& zuLd=a4}$97!=UEjXW&`jllr{B1K^ol|3SbvfqL!(p!okGQ2qP`sP`u&=c|*!5_TLqq*(}mx3!m_5Ws2_1yuAPTmKKem?|? zkCrWU`rH8O_gg^q_qm|>^bSyV!$Y9v=YnPPES|6#)Of!gR6Tcr8pnSGHQ!$cHGd~u z?EShNyou}Wp!)xQP~-7GpvG&(C9VfIff}!;gPO-GDEammpvr$8R6EiqxxTs{JcaAM z;M>4gfbRg8Uh4DmC9t3ClP+_)xE|cW^)M)U_y_O?@ay2s;ANM4zyA{4%=LeP;*WLx zKEH1PFXH+)pyW#Fih1TwZvw@yTS1M(Ye0>|yFrb^S3&W^kypB0SO%tCS3!;Y3qjHO zE5J42M?jT7X1UYvW#A=T4}+2?e*$WLKLTnzz6t8R$E@&iJP*`+OX2z^P~$WNs=s?c z$(c`rYr*e>+rUe&^6`E(sCoDVD0%foQ1-#kK>> zEhze(ztZnt2ButZ1Cy@ns`YBK+^(jZt6SR5$>H{7vsxLb?ro=&ty+CFEl;)^t;zB6 za&uo=sWq#^?b_~YtJKxin%G&Z@9op?qt$v^Yo+CMq}iyqtMy9SZlwNuiJD4)oDMrvc#mMR@j^?RY3LQ~RV-dV2ItCh4?SGlfHT1bQH6O--K zs-U$4JU`NCj+fhMV`T2y)Qw7Gcyhc-Ke7sU?3leXJ9ea-_O*95>gjl+GC4*I>H2WF zo(`!q<%$nse}7k3nojJa-Z=)Pt1u1m?d5ijdaduR#$rgpWe?KT9{Dy16h1%W(no~#Y;YPHMF_5z5aF_w;(_i1=0 zTMRE$5-A{USI21+bZ8A;M6-s+CM%-AtQ8r}dDk`2!wfUebPgJgt<*+Fs!b*_OggPv z8Rx&&qOD^PGA$U|$COluYa{#gCUwf{t~S$pdAyo31Kv^SpQ#;#%C2C{(n@utJUP~G z(Sxq*2iC7ErPpXSs?C;7e|fCcNGGaI5nS4!2F9!0Vo;k^bmXj}voYDOSS|dm*0xLO#>uvby-^?AXA>9u*X6SxNYV;V>vFAL zsqL;+Cd*?s@ai=*R-ngbl_^9d1VYl>m(wlA`zft{7UP)HWIo#_55$CRxZPxiPk(zS zov^WJH5lNVC#x+{55i-Jex>^$bq$89H9BSR>KTzp#0)o}lj@8)chS^9NNJ*4WfkgL zU*1*K2#C-k&F!hRcLp}>v$$HUzO_Yasl}BMD<9s8=u14KN*?^5$YVVWe3L+wxp`wsjfnF#|yV6Lm1}NV zwQlQbYstWx%^OxYk4I^_+~kG5 zJ#Q6L(ByYI*2f`k%;#eCTTBImUQ>`cWdqn6KsN`(x|rT z3))CK`qQe`TUCl`x+vb5aM8}B4YzjpwaY_LXhs%{^&XL8W3*no#Rv=5Xf?(r8F*%P zC(HvEm>_{v{Z>&+WFuZmH;q-x4C>^B#D%d|CMZiuw~g{(6hp1<*`W-u*py9 zh{^gc+JsCEdNJ*3CEduw!3k0RVLpe1sJ0n0=*#48ty)=x6ce-WlV46)={O>F?N8LS)Qc#aGe}p5(s~x{HI60-6E-{(l4gzhsV>jKd!OG}#q;5>3op$6Hcit9Uks0xTjBTY-tKa< zCYtxhtb|x7){}99|2{g_7(zM4heQ_G9at3gwin>hAX;M$e(Aq98{tLe3c`=sM0oBj z*GI$O&FVOEjfv%Um_h~(eJOI26^F>`tyiliIC(Yp<4$uHwtwphhY%2AZ>4V-+uMR4$8nT2g3oBamaw1p4boKS%#G^kHE#b0m{1cP?465}U@QggZKWcGiY>(v%8} z3~%l(*NhIXTufPeV2it8RzfClPs@K>KI{L|)>vZ?>F?(%^g+gGAp8u(^)qS0gy-L+LyqHmnGG4FR(aSGb$l{?$*iB|vO z#iQ8RlS3sW>f%r>dNusHxYlZ6^sf+`l z2^_fS2FkW!mP=imv7s7uuM87q?dl+wqTF_BKpI!7$;!ZFya5xuE@6?ZG!w?$$zJ%= zFZ)yd(LiIkDI4u^T4Kz?#JHA1j?~jA+&sbCtl5Lwft zbS&uV0fDg-8B}ki-D3alT+?SYnk7p)v2(LJN}ZVFl|%e21)VVvMCpdUiLrE|fj?-^ z6DepVtJ0O5*2az|t6b?KWiulyvt^~$7RC~C6uPBR>y17}aCm2TaI&PBpQTqw1)DLc zQmyXdgG0FEZji}iGt10%2F-!^G-IpWKIj;Eezm(cA2$SLQ<#rAOvqI=saW*Vww~5@ zQwcVd!L){cS4rgXUaVYbVpRkEGeP%SwMuoU+~h`Zb_dK!fGk$Il%+iud?eZO-Qi}V)#}TXdMRDsA&k}b zSlvjKS%5^waU`*XU>#8=ovv(uB&Ax#QnhgtHJO|jiRW)>3@Oy-?_iW}K~?v+P{F(~ zxK&7iOggMGhdh(4SEarC7T2L8zdf6T?JN=kc-U|G)EVA zuW)64<>K-R>>2-cFk@JTOK+8UF-eYSNmk1aZ6>QTud?tbovRb`%UHjatVUeWb*7pw zPGiZ{lM`b|5=MU&a|?reOl}bp0nHE%A4D{2QbKKYUPiSoKuZrxg=*Rs(6GEZjQZcT z!ikAOm22wgPW7Jl!@#b&7!kYYu|C~Yu!a(?YIR(}HL3nR#FR%Dp=b8V-BJ~3q5f*9 zFV1_Cy}%@UKi81B5puHu#hdFa(vDid__CC&ksk1W`&F@tPQ3(kMxjp=l0#L3P-c}# zD2O>?fGy1`4^{Q&PO85%Ojf~CUnCLf^kE&&odJ7!R*~K_UY5{}Bx8+-M^4d1B}8+AZ0{i>`g38KaCmxQ9iC>bcfHgn?}_p~j(?uo#&Y zMEx#v#|DvRSYMSvbd}kIQj@aSI-X``S*}nGJS(ec(7mBS-4h$=q2d!RGqCq17I|%u z;fgC;z`z_+w_}VuqmTUvE5WpI&o6R!bPUy&LObNbD+r1Qti>8p65_6`RU4Ds*6^7R zK=r20#Q`CLajWC}=56z5)E|n^{2@9ykL<1PSstqFM7fE|gF!szoo23zN21KYvdBiE znf^?B-$Zp#e!FOV)^Z{tCt&7zq+v5YZDy^A#i@hL9>*wz$fdIJqTJG)_6#Z~kB6B} zFoR%1)NR`A&<~o9y(O;Bh<(}|dz97KZhEV0Sn{F=5iS}w$^tj|V9;GPYkP?j^;&DE ztYC~?b6jD!+@5mk5z)v9G*RM9DcB^}A}?uLHQjdZtTs#j`y571EI>OUw{a|W>xLHJ zu!R<-yK606=geD}MVYRk6_faA?hneZ$5fF?o?K_khhynld5Xz(9voWlt8d|6Bgw>y zcUW;!CQQR^Zjsr5u#mZ{l2k4Uj6ovtC0f==FLrLk^_HeiTayzqPEb^=8@akKrM*}M z<6{>O+N?E~4>Tt+rlS)=4@{F}%VbdoE=;cH&0|#BgLr3{Sm<#{g_Cqs(%2RmCKTZMz+- zV(CEyLh}?Lz_`uFS1)Nn&(&(zL2RySeX%RZ#gi?1w^%wm8|jj!{X(X$y!^n468ECYR2AD4SJU< zWk`Z9b85AJ)AQ? zMAD+InEa3fp>6_Om42_J3Z+2zw)D`_J?ZM)SjyxCX4f8qUE<()PXXw#rW6-|u1LEF zXj%u@QaK&G$> zTvKLrwXW(R#I(0H32z|Ex=Y;)Wgif+&*ytQ?i{S%jM+2jZ!m=z-yCN+i_+V(PpR(P(`Z)G zJSwuTJW#z!rkkymz#>5^L!XBoXt(7n1cW6WB4liliPRXc;Mt=QY)M-2l%6Ka z!G)XBRTy8^S-UCNy(sPO17$_F?4sjparTpha`%PVC9k6^M&=#})EbPmX&(4el84sM zI!nnyh~8i+>99n?MHb!(*EYG~?=jT=Sh4|wQ2Gx|tR*IM`Jzrwd!x!}O^#@_#7hUc zr#Xn+=b|$#>M-0C++7=W>e!&jPP;Kt8%{RhRfmvaZ1*BhREidOzd1xII1)|4J&0D9 zje4UmduBcmV}kbR;f0NQUwLd|XL+bc;!v&wr5>>t#VqR1w* zG$8HTIEF@8Sj+8H$RK3zl&tDjvcZ?kl8qh%mK|3SYv&3WBAm`|8{yDwj5UW^j>bl& zXtZ675luBJ|3&R$1iiDad%L=W89=Opr8&sWAH{M(kn*^mu?RuX)jMklAFMbXa*&s1aj)Q8X9{%gD$>QY|S}b?r4FUVjuK1)1;vKs3jdZcd1idUgiv}q+ zYL!ak1T8Ag)3BA2joHFebnN@Pl8yAEnQn@XODo)n(r%;cj%Xq5vuLfFq6sJjK9Y@u zvv$|2d$K?JB|nuoXFO4O!6vd!$b-mdu#X}WE_@YVG_l!ALWYAS7|HZ}GLh#kp0`5p zoTzLPT4p?xhL>jRbY)Zl3mmZu14#D&JiN9s5R zCL}di7Dhr=8LL2NS>(z}h|Lu0X<_Hn%GqklLRV=ouY8u)1+A>K5S6jKKJE2xomeEz ziKXNBDwZ+Bv4Ctr^`Jhz`EubPbOk;;p0hkKMV_bK=WVPLnUyFu%FW!M^I6}pHWzwH z%e%_M@|r|;A)H|Kz>p*6L_(D@Jv2pUvv$;OVMA?V>PbsLyE&zlN_KB|tud)Mq~zwN zW&;aaid&v{#iFtOOh*+1n_A6x2}zAwp-|#Ms)cOlSQ89(FYtxQ8Hu3ra*cIgYPSU} z)^d+$y~%EcIC8RS->8BmxO3ILOqLN(PZm+O zJRi#7;>bV5OB^OQ1p|?GOf*`Ek1NtmYc|OO2!(^dqoM(XF6m|?`9-T@4($tLobunza^Z>NHAMJ*k%T+u}oeXi$7L91&PgDb?6 zc;bF@0BjK+$WnZQPrV7wjRiKF9T*>Dem#z|D5$^lZgoSEC5d|bHj7EHtS60zROiKN zl9P~f8=DB2@D6ElkjrgEVGA7QGuEH!z1ZTY%@pExXEPMmVM(xjj>iT zuyOT9Pit|OGP3jaO$c`8LgzqC4BwR79|JbomJl+myi{r4AW)rd(Hj}#nu8DwOJ`n> z*k)eIgb6&U+)`4g8B%TYp3JlP9cnK4J5cQ7i6F72{ALmY ztfs(J{z8jfSrQ1%H@O{s*lE8rG1NLs2@iHi%FJ10KrxB1DluoFn}|anv=)yeh0xOu zr_wu?U>$SBzMWaJ0BE!o}V#?Zi=A!p13u34CpwkZD*yFzdrdg)E-QN~7p?W<9I5BJDt+jddK?Ax&a z2BT`M21CoVT5{1v7isW=>F4j4uiWpAtk!qeNDna|#kfRi0nCEND3Gzt@wnN`Ic^bi zXl)qY*=T6x8D%5SRr;PNPHsJFCaEln&s^Ty-%#3<9AemB>`I)IQ`X5x2 z-NwQ^ z^NRV1P0FMB1Tb2*FU#5pL}y7e#AO5Lu5o+ZKYzi!h%G0Grbv z8)EkcLm*&!YXSphA#_H-oitGqbd1C`Z=luamvd;@>OtQmTf@UXSH1@h2J{$`$W?WW`ZFOP94VeDY!@W;(&KTV@ch(xug251gz4D{ zF1r;%dYa-ctwa*WQ=M6-41;B~EHN#oNCV$e_0Wj09?`YNf>$0XRrID1wPbPA zD)1~*m{C<`PP0)cQWz=Yj&oPH%Ru)9yThaL<-U5_RwSUK8akvpd__Y$z$O|j7Re8% z?rcrKRK7$5G9U~{Cb}%U-xLroUSYp*s+vh%@azH19rJ4;O0Ac&I%W!AP4hlu&z+rvV* z*f%77GO=Bo@QzG=Ge+%Jzw}t=Q^8)+WzorZxn%k-2GKpQjM15uuu-oNlex z6!8xFxR7s$j-5RZedgq7UR;E^>E9U>VwUTDE4Qp#OM-RGbV0tx7yF_xGlE|*Ns_V@ zW+ucKn2fX4tC-5xI=s@Jv`v^DAHf2@N%r>uE(6lSvbxoem{x||vg~x_ejwq;c_Y8- zVWQc=I<{Ly5>G6N-p0RGGa*K*|ivFk`-W>;&em$qOr5!E8fUtvY#NN~VAqX@mV>E8hM{ zzQZDhU@<+y_TboLXt|I9QQ)*Wy3RV}@6+Ybq+;a<7YZFMYPF-Ul+mlTf0gaeGZ9)S zKNwvuWR-;;V1ryPWxp!84_jn4nt1VeS9u8G-1MzWE{^;6)GFtj+RDIiOADSp}&bh>sVzuQG`V9Pc z&2mG&*DLR{G1HZOHe;j!F>m@e>~T$^nX7c1KttT4s)@F+V*5KS2>@y68%o)U74)ZX zQN%sv27L-zSI>=v;9GZfVsdB@Sz?>kGi%OvFcQUX`{5jGHf_CT+04iE8ry2E4ey8j zY}n(|ZBZ%G65{p3!>p;0WOLZ9@Ff;jL=V3Mae*_mKf7FbxFf*?D692%Xo6+&hxglt z0KakAEtsrTvXMi8DFU=%<@z<|mCT&_AULxp#5p`Q8?``ko^b&iIt50rLgLQPn-CGP zA_&*1i1x3TATmRXJDei{-G{?s!Wy$4snsV@DVCSUa=Nd2E9j;d*^gR-^jwB`n}*BS zm_3!Rb7wpiHJBh zDQbdpp4OyT4zu|{#KBuaPDh4Y{U?fz!1c>v%#y8C0KHsyz zlr+rd4V044b?5zT%ERr$e}UpGs-+KaMy^qly$w!AWcBZ=mUuI5v3*OnfMiC8*lBamTTc;7FDRm1{~GaD^SsN=t%_$7I%IE55T(S>Z?3whyB(UoPfH zE$WAPg+%9v+ze~gS?5@LJtP|T2{f~(azdE<$YS&#%{I{hUpBtr5O{e zLDRu?@ax$%Wyk3bgkCS#py7m<(q;hXLKrexK&PgvCz#Ap{^pdV+H3_$lsMM#2^hPmdNc zNsx+V;xK)WxVWtyC>Lq^Lrk!H7V@vX>N(5KXbkT^62A$#l}o*H0`*OGJ7@H zLTrbT_IFh5^3+n&MWr-39IZqMPKlg=s1^>cusH4~`Y*-lc3=upFQpdfAE^Wh3-Z{!n+gIvGfrPRl<}LQ; zZN{Fn{1TO|{~p7UNg*(4yT7YS=wh73+sYBhg(_lG3C0*Lp^A{vBPp#c0MZ#SoF^wZ zFDk}&$;Cl0o9IwWci07DYtkZNgGycX7YzKkC-M8E<0QGhnj76M%W9226pMq1j%7Ei^EoW6Q`B9 zvx9Qcv$IG^XW>QZA&O_V45Y()Q?7Nhc-FyR7oN9mdnOKovy_>}dAKKQ2~Cz^5e`J0 z)`DAV6ZS^tJy;<|o%Vp&5d4eW$RjIeq5WhTHX8OB)>2;B?FPJ=m~`lqf<{Jyu!u2I zxAnF@+vb>BQ;1y7b!w-w?=2WV{ix2wXPA`@Wm1wRuIRDW?KtkB$-;)OafB#o@Tf8Q zmHmKgQo=>4O;k&)#M*w+QWCi``vY?>>`hNRL_QYRRKqp?C-FQb{KTXPbKAqRaK4-y zi%V)K>PW0E;UGV@NT3jkhkK0IT0sD6iNqp=dH~^Xx;lSIt3jPt*-2(dp`~EaG>}0jJnz7o} zw7VVbM|8u^AwIh>*~uY2V>+luLm%u}RctW|3u_@+n`K`mW0;wbnbKg+a`2V8r1Ebp zx=Ux_%ETV<(8VLDdDen+RZZqtcI+nI2V%b&BX3^`N=>oI$j@eb##r?MxP z_o`_zJdYO>ZRSkLnOhxWP&6%M-<5c+pIF$R-g*()lz9E#tkG176T=Oa>k)N_l5{80HR-H@hG>_Ix0>FMEV0YTH z7+2>5(Wf)(&dyDhX_5AE-jxW=IY|41!bvuTyPL0FHOt)r7OYpvQPy%-R>N?s6;I(| zzg<`{&3=8>!G4S{4&l$jIt_g+SPikUlxHO;-_o9UW5zGGte>@ls0zmpY23^;jrA38 z#|5mxVY0s{UCk@+G~N~DU>KD)kkv1v+hbz3e$|IC=rc3d?NT%8;!E?g9;@nuG^%)e z7Ehd|BpNI2Me!=qM7jk;32HA~b>X2(Yl(AO>1Q>D;>-q18`36SRkW^vs830%2(qIJ(PblAQ(3-p40vhg?EAv>5KiX$)R|i zXpvb%(!p98r`Vj47Q!k-EQkxbOG)7c?=brOJ!xaksHJOyvqgDmrmCtNUKaUze1 zL(ZTdJ5<8y=g<#DGU|A!bJx2>7_VndC{LY42G15+r`X=w_~f`~hw{uM^Ak*R=~l>c zkN8vyZ(!r9Lg@G6g^9Baz?y9(iCnSZ!UfW!3;Ngv!I}0tj@a3$loiQh$(j=i<^Ei( zBrl|NBJ{7t;G8fK(EQygW$0kp*Efk-K8vfCuHN%9$V`$ zhcw@~zkrOt1sG9S;`zyr5Ke!nnriL62d!kb$Msa)vnc;YoUW5pM0pzb$ZU4jhFG#| zD>@O1jRnjoD<#_DjQxR7=1&fZuXh!J=SdxJs6#Z z1!Lxk(b741m1@{!CgOrf{A3fd$1OaeGJ&nRg(O?V=n(iNz7}&;T7@#W(X74lz#`ue zp5+Po4}_6a*aIE#B6LDo6Q0NwYfuznl5ioHdOpvf9h0@ZV07vDMYa2SqLVn}AMIb{I!;xRCHt_V<4I9`QhgtA`jKq2f1 zbW>y6Sxgl0G|5Pvt_F+C(piz(1TjmUt|FF^BQdm3;S@(-Wf;o{GZ;?SmzO#=@p@iWdb< zVfo%+98_+h-e?>4!`9k^yr6R%T%Xx;fs6B6*c+W)gdY!5rHa}|7!n=Y6bIF(P~yYl zg`v4{t~g6y@NkmiiSSeBgG0W3B~zZA^(GeGk>{a9C7=aaMP5%!zqyN2P56k{0OZ=- zH8~N|Ik@E}k_Dlqu9V-H-F1?4Yb2J8tM~D4Ncci5vc$rZzJCWzA7+7D7MHM%KpFro zZb3Wwv1BPn6qhJQ28=EH<-Ve9Gwp4)e?)C_il^CxlJ>=HsthSpB8!|SakEVJ37v3e z9Nn|Hj5D~eh$S5hW2WJ?GKwblEj%72GI7R$#~I57q=~hDQ?lkpW{s31@25wX;yc)P zAp6l5L5*7Y#e&~{1{Q~lax#R*7_mwOUk77R!i)leogc&0k>Zby9nSHeupJnBTVj zJ3m+!u4w={T7mM_37wT$tt8Wf%jVt2SbsqtVpZz=rC8pr9QYthCT>Fb(e`PEVptjZ zkpgp&RxBD~&~s5>G9$|B3o_aJP0E);2oz_5nZ<_Bwsm+UK#MLiva$^<%#we|FOS|j z35n#S#il8z;5`M#!w7jqk87qo^c&9=zdpj14ns;f#&6iZnvp~sL)_exXa7ScvST_8 zk3$#ELWt9g7A6>}_6X{ZqA6(U>@pj0Bem?dvwC)!2iP?tDE54vEA!p_ylu3$oj?S~ zw#p+O3((Vq^T(ialc@L$?4IQucid0pon@f(#odj3WX%{Xe}ij7$!-s{D;TOw8$BFz zAd=s!U7{6Q^Z!e`f*CgF;LPmFoKJ*i+Y=q)QFCc`^Ff3??NF$2Xamc{d`k$9!I}!J zK|DoAp^$=v&&M2Jk(%7itDqg3X{q71=tNjCEgmr$#VRsUnKQQ3sM(YF)E6E!@1if1 zRx(>z&yv;?u~SlSM&u$ksTtclM=Fp$c@+;T+?A=2C|W9qsD8H1BZqiI#(ao^=PQJV z?ntrgg-&HJ)7PRfbId?iXGxAxH_d#;G%jp+;}MQ!)QT-0d3mqJ4*CoBrJX*Mxj!ab z&3cyf-<82E3tUZQ z`8})CjUQjpQWL#}zH4{pZy`RBJv~mwr#)rrh6#)-Ls^OGeJ||QDD2)9&H2_cJ9<HOvCl7&}vtzWx-O+KtkN*8sla$4ydFfj@n zwin~N*6LS?^zjwi%O~3-eV66sG!Xc|eenY){pn?-)@9%AW?neFz{7}3OG_^16-n1k z1nJXRKIjemU<`z0bsRjRayk)f9B*E}(bS#nJ8h%~_UkIp&w&qefI_hGbsL)?oqAU~ z$?1TKE0K7jV4N&d)*9Kfz1L2EC{$32Rz%60)evJMb2zv|7R{D;P*}xMo>@6!{fCtf z4n#lfmdbl3Gg)glfxsNyR~VC?ss5ez?iHVBhFQUZUNR&r}qeoO`BJ8OMzA z($|yegnGh4Le^#K#mna$A*pdCT1?#q)fbvI%VO?)%4(jeRrh&tRNIcMq~ z2(49S8jMESy<22XJ1@f9%Kd4hCr(CJidNzT8w=Yf%WE*P%R2gBtg=o*801morcns9 z!vK)LMgO+AkSfqX2YE%&#*9ZgG%4pt4C_o!?ffSaHYy3I!-1;&#n;`_R%1v}2?AP^ z`P+z@L9i|7HkuKm1hrXafqAlc9c(3fI3 z_?r2~RyyNj=7Ervg@oVMM3QyPHqB#st1xalHAYcG|DbuTIdvxuav|VC#J*=at4mUhm zm?Kw+=}H%2ROcKU^{^4+oVsgRx(L0=z}69|Elub*Zhy5c&wz^vgjf(v6H*Yh zsgio8?vpr)a?&51B1KGd$SAomQF_)t5x z+yp0fD{ZgExcTnPw3i`7=Rh`30dM`=eSP zB^q97*fKAjL0Ase5ZUpXC7~Ma)pfD~dBkjyoi=rs+8l(n_Jha}3p1WFr+j}s7!grE z5!1t2V(Nl4z;md&%T(4*J(M^3{*osd_2eIghfbp4<1L-WUziwFjU*-KzwHNLDam2>*&vrJ+e!z$o@7%5^-VO4+{~FA_Hsryvrc zuK4A6EK9TZsNAM+VM62dz4!QoPlWC;(DA03fbtwQ9r{f%NApQKNJ77aTD{ox`PFV3 zHSiHp`C)uc-r3lyj^?K4~!RDe=)XJ?YjD#A52M zFw(I))?fMdmS%Yx1?$P!4jL+gCAedM1mzhbe)1-RnVj@)ob7A$ZuFC?GYO^2wA7lu zQ#G>KYy)nkyG1V83H+@u((^|Gp9KSeUdNT&M#_ik$zd@U17`;R$h;|r%RfxtXwLcI z>O(!q;SA<{$^JkX%Qp&^gl30pn1)@x)kl++=WVD>mir%l5NB zmuVu*fyk#iKqidW#SFi`dtbKgI}C;FUy3SPXrYgMD%{}3;zzj058Y>DSg@Mr{Mh{f z9vs18@vB8Af>Xo|QG`#Wjt#&_aiK_uDOnqB_&4sa+__}MD!;+Bh@g!Sds_bUY+tnJ zy!a@7=-U`31lPR(POJ}16HK?+o?4zn-_c!q#-qatayL7=BUEg@GxMLuPdVotGIbBq zR4%sl(f96<0X|Ve*chOlK%!M?~LSH9F_YzYZw!G{WoAVy-Nd zQI+}Pwr<0|M#2vBT6oe(wQL{F32ISVbYkjG@*>M{e5q?apGes4HLfa;F%i(f+SSHn zQOl)Nz{-j=e6q4RYF0IGT8Sn!nTNt2ucEkVhW<7Cv$u*gSt(1D^^|quQgg3y0`)Um zIl4<4dNT$Xe41p7D3Wc3@3tq`z>~g3cB6!2jL={JAYyHmwTdZ_NA@JiR=RSOgrnt! zrzAd1hX?x#D$-IF%6}uhoDl}%c|GAA*tD0)PC2Z?vdcS|x8QT)kP@133Uq@rSsQFL z#(0&?Bp;cTo7SeQX4pn%X%bl}mCiFFmWo!g2lyfqAsF+zL2 zA+=WcLps&;h3xBDYl5x=HMb}$JDfm;|6!lz87@PL%%=B4Vzpz6JNh@<%%|s{d)d+@ z#Oyo2$im#R=gC)Ji<9FSXqc7dlGC0|y-US@K2WdmMTD36N+W?I^XFM3NTy!lmcNv( z+-Bx>F6T0koQ0KxSgBgY=q=27B9MgV%osE-n7XTM12@vB<>qV_K-9EpZ2@C6+bAF6 z6LO_vZwPMKB8v8q!Yn}vjj&dSpwP5*)UJpUS%*kR;^?fIE5-B(SwY-)Vokh)?gRdKb*i6 zBNs*5E38@M>PQ9{qOMSTA%c!{Ql-@A1@dq@lPOwY-grYH9)|wNG+j>it;_-N>I#EO zIG!^|#q!y62W`(r|FpGHqn_v#aKu!RjEsWgG$R8u+_Gxj|B+Ft-Yec`n%Zt_k;m3_ z;X&!T2})J44LT>Rqo#gdHvylq%s5?OZ*&XF%C}xp z!bIpKwVM+c4B*ZdxvgK80by$=YKtGKVXm{HKsxmj4m73eX&O3+n%({twiNmtq8DYd zNj`QGsI@@m6$jJRjI?vUFiUitJRM8HjGHZO|G=EJn7H&1>n!R+vN<0gD6BnoS6eHg zjDzbxvFPU&$l zl2lCx_A7?f44QhJbP?2nc4i*<;35grU{JW1Ge>t=04UdGZOD9!gk%07L?@?yj_0yv zR*8n<1Z(sp%yW*jVV$~@BsK~Exe3`mq0Bm0QG`8`5xTZET2i&7Ohn~cQ~(@8#rcAY zb2Km`abXV9S1v%W(N(dE)k_ zRJCg3$Sd~G`Bt!tIRugTQ?!&#;~^D`>s?~o5GpvZUwLO24=P8k+FU-+oW!kN2tDu! zG^fx3N=Vrg1$9r_)Gbi~tL8_3*J@_>y$;>)1yawaj1 z(Fw~jA>t+OuwtZqSn5ERY-oH>tra7b6i|r1mSRoJwk#B_42S2sy1EL)=GxGr7E~Pq zZ8rF!12#wU`Lw3Mk>L1mT?Zk5$O3?EP^hmxJE$FeXkfr48sE?kJuj6u4FXjoi&!XDX=}%%3 zi`mw&t%{HEL$%8op_m9`VpA(KG0coIb2moAukN6n+0@ivWk&J^mkzFWEvrKg*cU*O zLbHoqPLpPp4wWg)TuUc5Ww%xu^NH3qm<+zdMgIo}TVsuOi;ty<34N&q{)JF*B0B?- z>lD2#6f+~tDhnDTHzqQoc1NI4bw6#6be%3wH;@CZh-bdMA58FRHP|wJU_Om#;Jwh^ zQhEd11Zf@;m-?%9rhxCdm?R+wi@Fp`HZpap2>4TF~p-dRis56XoCd%wQ zP^K8Z{BCioxr7H<4_#O0v~6Au!~SnBiCQ8BUiH))_|h?AJF|6sh7l0G5PN&j(&(!d z#YR?=AP#>pbV&5Q1bH=a;XsN(-}O!-107qyaDuO}H<%B(yrNgehNu|Aa(t3_kw&nT z4lqL|<*2Mqagiz`skru7c`s^>piCYq9pckOwFX+ToUF<6{DOBH*L4fl8Dd9aK?d1_ zosu4zEEL%(K+!VJ!VFwj8!g`=ePRMBQx4PatJ~R{;Edl0(Yc{J?H36$^T?*%4BXNkt^)Vwyq1N0!fly*nPDdrV z)hUk0M#0Huy~NT=c_!Q;A|1__>|U~gEi~xG>@k?%mn3ovfUWmfV#tWJSGt`Ysfhc9 z_$RI;j750Hyf9g1nIbgV67?BkF{~?^>Pa>rX+{H8ZqdRRvkWDT=K<_l`;EvB%Q4zP zkEEQLo~qbuiwy@db4-?L4lR;qqi43(G>^jD4y!X-)Jo5k+l%=r2^X`&tuD^KDG%WW zqdvK2Em;3Z--NUdgrc;xrsrAZy+JyAT5g9u!9Wp)A#8?%rPmYW$U>m(u_mRXf$>V4 z3w0{)j;E4r2-zRjl)PKm{9(lo6M9_B9yA-VmPr*8DVFh!MA=%*MZ=x)a3Ism6HIW+ zhCo&;FVJvfiOVbU(P4*^F=H26`oR7Ik5f`Uhw%lKl2Bh`X_de5t}NWi1B?I>O1XMy zIG$CKEt0Fz>dL4M;@==mI%ZiCgz-Y!0`KyCDe)amu(S#{%Cl$5XU__Sm}XFaMWd*Z z1+>ljce#n-L!s!+j=$^<87FM07lDYTegg^9oen=1vY@T%3)y<1a8f zSOzpoCNf>H8awL6)u-kVXm`R#Uj-A-XxbkN<}{qa0dLb9CIO5PQZj3_Jqtw+?AIm= z>lh~Jv|hnWvZ)KjgHE+|zv6ugT38N0$fcj`PZz_8rm!2M7c0n8^$Xp#;$5U7PslxD z9z427i9$ecQ6Pzm`@?4KHd%nd(85+mb?BXLN*hgm=pjfIk_56Bt%%c zA~J>mGM_@k1k;ugof7!`O~3(>BpWZJw94JqO)-aQ*+N~VBn#>fP2Jf-4#5}le0)bh zveu&j#amG`W@R?%vqIU@Q{mzDzSBgr7z^_uRPCdaAy=$(BTaIB8^W84n7Ad|ApdJr z6r;0XCC)l>h8Z60b49OsiL-~9zMeC7h0cGJVU@rTSW2;j;f9BdRkfzT-c^cCB6j6rfyG!5y>v-V z^H`Nwg}s^HBr6;KOcVYgbxd3soG@*TfpW{^4c3rn#={_d6US1xN@ikNg}5j@n^#dv zw#3v>1}oTs*wf)=zi2V6>K11pGd~pW5cO;^HpTE}=n7VyFJ-uKppAM))xK1|QjO+; zOkY`9!Xz!msE}>5v~9N8TsRAnawi(~=f$u-T$;1^wn0>lQP7#lD$F@ZN27 zA5=S^Y=eN^4Pv!tj&zk5_UF_Y+B$j?z_z9tG**`HbPfR z=_(CLd@zp?N8&0xZDAkQ5Pfmgb#qtP;ZvwWrrQ|DNZN!fEnOm&vrN+_nIv`&>by{M z+BN;5(vt94c?qFXIn&y8<(X-+hYKcQh23L|x;z%*ic$r1?2s1D$H|k-EoM_W1rg5l zQP^$EWXsfDItpDLP+ULvkc&o$lD-`dBNB>(g^bb%ETAWvkHN-Gxpk!}cS90kf@QCI zWXCjytiE9qyqjj#Dst|V&sqUr9}?rZEHUxZ;k-`lW2;16rb%IKB(Sk+HgQQBDO{lF zglD22M*RinSPWq2Gb(HpjzO?>dRukR9nX#hhaOLM>nt)&8&hvgW1Y3QY$ygVDsPJW zftUwv#75KEkF37jQej@}oDtL-3_)FN1Ss1n&0;56td~hHY^To)oh3)h*1so1m@W6idU2E-266nyy^*O^iip?3W zC70H|NIvK%TuEw=a^8JNVP`jX6|HRP*5X;aW?4#kjkYZmuOfs=Zr~hyX?9FMb|Hz@ z-5}LdaoNMg>w*2ZYEAw&-X*z<_aZ}uyWta2rNKe{J~&7TZN8n&u$3Xk6L^hfRDbb_ z|GhWcKp>EaVx+g?y0SdS`MkFs#tS5xL*5?4aI1D5W3(YhID~y%v88;_V(00zUXZD_ znZqYPM&2r9o|%$*QOM0(sIv-W!P`f+A)j`ymI7lAv8@6!At8EW{2)I!dm~;;;q_H4 zN~ftAgqk^iv$$xk7K=1*^0+go(3J-j+%%3Vg(6!sT=j3Xgi&-@35)GYv(WOUC1 zBh#W6^npM+`jO=mvAFU(ZQaX=8$}|vLjWc(tvO&< zR2Azku)I`KxsJ-5gYkHtV?@}siCc&(K@^M zxt@KPF&sfdS*2vqQV;$jmKUX1u8oxnx-0 zZZ~m+6(*3@^l5X4(n?wac+0jPlaI2*Hl zU3gfOp7C|Ti6HJn%v}qVFqrv6nG>Nm7lMb8HkeyWoq~U~V&`wpD9pAl{k{q}MEanY zqQ%uVc&T#CF@9xuo=X1C6$5z^8mav0tp36HMvRc zQ4C7DO9=DqG2%>9<{@zD>DpTFiW^((m=+@0UXW!Mc^Ym+%^7aD z9}etat8b#LFOPDNJu{cCB$zaHAFOXgC^f-|v-D|S*HdDM>2j@ENn_;MwX~`DVPM|x z`7^c=vlzw=rgzpMj;q)l1g}~2tLzjz?{sJSO1ASFC)c-b<70?(THAV>+lvWY$R-c^ z(0cp!9Auk4?I~4-WnUl8=_M4|QVK#?aqL*P>8Oq<527&N2dA}=Vu7r+w#RsobtM)G zW^3|R#$0AiTm{n{D*Q^;m0WX#aZK(&50%;T+OK$m?R^U8f+ebgS<&X#mLCLazl3_6 z*@;}vSy{(JeM3Y#YGeBRM2~GajtkT^JhTb~i801fi~g?hce0wOcB93SmNbE^9!~Yp zVxpVkiabenSaKL4KMP)2uqjyH3VzN~!Ti+Z@6@|&p-|}^^bpMu&Uj0$-Acd zVhH*F6?ZPXaUDq-K5IV(XCXiY%7$xZQ5FWMizJjbR8SvLta#ibNIZmbx(y zGn)Y##;m;a?4%c)@BbqsFLmL?A~1kq70=0&Cr@T%T>pp!NrwyB&KOU5eQ-s{!-9h~ zR=}tq2A9$e)%S%O;nE2;(8=WMM9pxS)cI&ZKh_M+5wsK0jcinemO>>-QVC*z6c}fF z#jNV3^GrOb1~Ky~RQXMQvEkJU4kA^IScN>F3D*y)R~b!}Kuj7s(1Op^dQ%wU9LL*i z`bMcTrI6LPGUGc0e+5X_gcAtkqlP>~1B)#2la=&?u`B6Ia#XIB%JQx;Pa2!U5Tz>x zW=+poHJrYwvqB=wH!mS^=G)As`;(t$H|jQj^KUpGzMb-H2iPX-~iMPxN) z`wvq*ZtHHl;}xHx+QCv@sw)nKK{b2D0<7MyX8MUp`$-{jW=mwoj|geA$SS5iNf*+j z@i_XeV>*=vc~t8=WpxOqX?yOaHWg0=26@O3s|u(1{|t7bLyck`@-?b)XLk)2Ph_Do z`UC|ukm#ZI92x`>Xb6lKB25Xv#QqmUkk_ zyLqvkJL*D9QDh0bvNZt{L6E-cC$oEb=XlZ7Km%^G&II@h7ae1KtU-RbBK5No0oQS- z>nD>XW8-S7vp06AX0bA~-IF-HqZdJVz^3cvVD7z_`xRjMb6PfnJ3Sl}x zFep6qx07Q|QFCgvk+9kl!{v!16a$JymK?_pJ4OiHEbxXgDucfe`4hkI++&d$H(n(b-HHk_~E5zNDT8;G@ij)fs< zloW7)4J8&TKIV;@q_gE==SU4-01kcmGF%8HTcvz%HM>e?RreHiXza4&81Ut-UQ!J+ zQ}fL)up*%t)wUM^?1Wi%!;z?Nl*l7n--2&R&gr^AH>ESYM|s@#p=yksOQ5%*&Nn`} z!w_HBzqn-e^)k$%)4hj6NHGM9^T6;x1!2drx)N}u9N_-O0JbCpIdM5Kng|~0jZn9^ zKNXNRzo6)B>(d&VMww7lEzF6)0f(j+hHNM}+Fs^?mdM%&s@!ZdC~rWsEwV&MmC1XX zO_7E%kC1gQd%#^CY3-nHZ0pX+lA#)eRjUm2@g548bS7|aq2vK;7u)&Q1O7i*KbbP` zOGE$wcQNH=;=)+Ah|i+V{RKJghMWc9fopXO1RYtIlYd)|0A%Y<9T5Jp+ncYF+0T#< zlpKSPiw4aPq|R`9Df!)0lMMp-?5n^2;Wsz;C7u>Vundow_IsU*WR28P~sKaU<5uu^?kG8<>WAd z>+3xvYNl#cwq*(fumCNf#v;zi`VtcWO5sXX%?zx_u67sxltyA|`y0#}n1TR67UA+o z1p}#WOv#19F$Z-LUOf5{CwoWaZDJ8LWSBgkC(Y~dqi;Chj$hw?#2JM8jk{XE`4Ch9 z*-VI()D!&8A?zp)szPBgDl#JO+FriFyS>6e*&WZMo`GAfc4{am?yP!Y?L(?QbAo-e zYcN|oM#f5LUh|ku)7`yRttCwF!DJ*?%Q6i807Ky=vJ9ei5gYkx0MY66Kunds%!#CW zDg@9z4y({dS-k>r2wgSuHm2}s^#o3y(`zbQe)snD6cX`{ET9_+`V_we9ns}$=$*Cy z{N(aaoZS!|zWd>MW*lI!=QTN3RoIkE zR9qc=BuK~cF$wSzvRu32k81>d!|R+`QjodA6NUcEmlse>RlhEkXeT(lg#Y`W3UY_~T>x$jGCI`djM`+9uSj zie~{oz*&!0ZJNpn(y=NpT@U@Tpsfg%Y(KAjHYj4j;x-y#L~;tR&N%5?8Mr4D=YJ8J zWN6l}7mml-A(i}6{w^GEWTJChTrW^P3 zVlaAIOZDxuNpgccE`&|G>3546gMuuJT~#+sI!c7CuouSEmpZg(r?#E)7q7#?cSPwK zJVG|ubV9D+_L!XMjH)h5_IPn#lE1t@p~K$EUW#)=4j~@Sx03RB?bCfrPp)0KR&||S zfhwy69WV1un)g)F3;Wk2o3lnnf0=L2T!C=MaY6U-Zv=t`v<_lzl4H!`ijA+KCh%&@ z<~Sc4AP+}lrS77zem1!!FE0iKOOEwt`YVHnpE;3U|B54EilF?K6~ajo1@{o#Vg1~~ zamVgvrKC9+@(K@xeq2DA2;+&Ni0QqqZYz&r-EInhU+gJOAe@6G#}O$1XW8^#zQ$Z2 zd%IPk`B34n2;aZHtQX}2$%vXGHQ`;gA62^nLcSm%PYE$ESs7<+Xj!qyAbpsfDFr10 z@`+d}#fhLsaTmUw|0=_tUMTHpO6Me>p{ThOo5F3L1ie(J#JUpIns3S9Z2T#+y0=!c z<*j)isP5&IeTo{=qc|v#JP=*)*0-_`wY!aeCMpngZ?MEQfJ|Bs-V2ImiEmizglJME zS6L}q{*pJf!h`NM*7cIG)gU5R>}$4E*jlMo2->~MT2|-$MQb5@40Z5LS+;k2tc1s% zcoxsP?p(e^FO2>-8xCX3(p?%7&s_5uRgf*RTT!mNHAe2$ZiW_&y0X>w-BS_@oA|8mN!*!hVDvwpce$ljC(zb8p%F-LUM+FRl{#yw@ z)KN#2C=_r)Ndlqbg49!#XhTR<)@N%MV0L9HfFe(4C`v>kDQEy3;FuT?UN_~b!0g7l zg^R9&G#kd{q{-2F#{0}jH&w9nYzBgD8dS&Rc-ya1+rjafE;8#R6rvKUri$yFNpC6a z=JX|um#ilk>*iAeaYezWo1aP@Wv_FeUi+GD5A;BcU`I8Xa2f`yS~&GqMcIo)aDfrQ zb|RMAAQVa_k%0gx!$FM$6)FJ~?`*G;WZaR}r$qI`{ZACyMQ%r~rFeD9P}Z~2Zh?ZKfME@jcQ^qw7;ZRsOmc#ZHnk-gQ>C;$q+uXo}bM z2@iCFB_C&?m8L(2Rwv-^Cl@(75o1tx_{DNj^k|yc^i&_+up-DtmBJUPezh5oq*H$5 ziPSm?QSMJAQ;kt*$)HN7M#3VogkaS}9E%;WemD*@q|z{8gvnv)W3=naCq#3k@T5Cc}-4BMaCpNUM*3*{ss7oacgeHS!}dNC2&m;)D~QIsu_ zDjr~nQ{Zp^d@kIjdQke5vZ@QU!w>0#kc*wF;m3LRL$Aia``>?I=TF^5^x2E6%T{j2 zpQm_{wJ)as;`PfYhOzqIKdhy&m*_@#qY^XMQVn%cCCMQn*o;CTuDI0PG^)FyFD?^T z`VebhLS?qtBvtH|pa)DaMeU3>w{6IA9O1XE2o9E^NH-np`3T)SlterE>3BI0*o=E) z`i--_z8z%#{zsp#lR&$H2SL-tlzR6AlL&XhL|=O`ON4jl7H?i__;X&(l$t6o*pjdy zv^|V=In6u1$(UKF7R+~Pr?E*Ojy5|psoGQ1`a?4nBNl+L>vf7qW7t~Nh{gOiAgATL z@yi>cB*7!ZmTz`g!Fe={`=C&CrRONzbWW`$?4Cd?XuuTp10TLH&9$rylsOMQ#IfBcec zp?c?V?;pSV&-H#)MumyN_Z*cO@A(b)+#MuSSnfS^T#_&Ncw$P=&q)SS9Oxkj`(f-# z#k|l7L;F)Y$%;D|&K{an@zjt}vREQ1Y|)S{N~lW`p~2MHv-lI?UTEK&#ih73|GQ*} zQfuXS#rsu!O_1bgUvZG`uYZY@%BZfqAZztY?KSc~v;KpiGK_9EqSDqKCqoHTx;W#k zZk$z4hQe2fwhS7hKHvlsg|)6r_>(!~8m zF@{ms`;Xf+V(*kO7M{=d=O}F(?#3RhzYklO5NeT;flh0kS^2)Pg;9}HXWV72XSg6g z7jH&xh%ZQ}C(YTNpOJzF(Kh(x|7tewBj<-nwbt7 zZFfFy>g_9fK#y^_jLDJx8i6il7)bZaKPNkNLqBK^Fh1MEisTabLiiRQLkAT-P8Y}gYP}cXW(!K?n-#34awIXm(`Q!K*j}cxP3u^*NNT0|Rbd~c zkv+y5Nh%?(iH}eSM5GVM^^nizB;`9q9OG_kljbi}M`jH9pvt8(wp2Tk(pafXIpoyn zo^X#03|e-S|FfPSX+O=@Tx}F-sAajBzU(y_7(&x>KqAIT0H&%gmINt4#!5zJn1nW6 z2uk9P<*$lZY=)>Lf`*eNY&J~f-|kNl&YKEAZ3-Sh)jg;KJ&JOD5+6Nd5)+%1c3mLR z>zvU5G1cg)Yk{g{6ekNiba)udO2Fa6)FtUa6=ecSrrye@P2yMsXrTtHs&zthv#gwr z=G%7BSeMso&aA?oAz0k_%Q;`$G(XgPpX0*TJ?v~OcnTw`F7TbbqSe&`KSNjL>2zSr zt;+&7YWJ96j@88zMVZ7xK2l=Y15{N>6?+S+sWD@6sG9|!@4!e?g$3mgcELrdS*gjS zyZDmoCkyGK?K1QPEkv$g4huT?#Cw}A(rpU|OwUd>i}2@NUPD?o_S{Q})Lk#IRh!5s zZ3Jg>n>z0DCg24ERQD&(?s}unaUDPD70`$ptFDj;X0`-OBg2UAv)lo!CQj$)zuqNmpsvNCLcML!& z1wv}c`QYQk8>-oF@O=URs5UvKT-~;TM!vk!FcHPo4m#)THK zYZbdr;iGc=s$LR0C@UMnK0aN=t;xSrcK1)<>M95IH2Q;xo|BEF1Us=pa>}P-akEk{FliNVpU?u0rSi5496CS zGG(P{6#$)Xw9J0i{47Pl7bQh1Kx!!=>-48LvCnF}E5M3tO2(0psClbXLytA;tU{jQlqC z%hJoWd1k3dWP6A=9O8LFj=jD{>ZbgV!||k$P8`1O1X9VMQf)?> zMAaX{o7(G-wwo2CTgCj*Vlq6Fso5;k!w&40a5Ubla|E+uF1Kf;xKh%RsU=p8EKTqm z^JDyGV#k;jEHq`lKyIC_7a}FW`30{FjVGCe%$f4fltGsB5gKc^mR~=$ZjBthS{^A8 zm_SNVw;yb!?riDz?$`m-))1R@E)77`-+xfayrE8G@mHeBMIdLbGVW|g$6DWB5rA$r zt3}GxB5O?}xJyTEUhDHS?6ZGr1BGIwOu9)Hu1i%<2w@u^S~olUaqi?AD^I(2D8G!- zw2elzip8{yX8&D!V1qXgO$T5o?;c(pG^Ba1`WagU7EB_#%2GmlYeOF%7gG-=JavTG zu7B#s~LrIOvK8Ri?g8F%(`-l3Z}{=S7^d4 zN`97Nd~fETp!EIEG43}kKiC2YX@{@77plEaj6IPu29rdulp zlxc@EUQj)ZB4c5foI`1U$Ri=>sDmb>A*C8xa?51YyGzm%F^neU_grixi5E6q_q{BD zN82(av!}k3-k||2O`_Bw3(hY5{;4d8GcqAnIOV7D#@l|#uGbgX23x})@S)vluJPr& zI>85YDKjd`rfu4oYz_2F_V%&RDnd^nBLq6RQ88eqHN3&NOC!F%3^8&@E)u7FUcM^k z>#<}$2QvfJa5c3x1BV5MED21b7<9?db{j~AjX)Ge6^IxNtVIgl7z?iLlOusAPEc-} zl`CE)Tln1%zYlkOQ)i|8l`I*#!6u)r9c;12i=&)?+|b;pLPe@o^)^J!*sag`xZNp3 z1llAwHcp|ptF3F!?78Fke~r%B>!EK_w9yrl=E`zePUQ5kz^n&IQ|gH?I89VIARwi} zh|od;G5t!+R&fK`o5JI}e0Re`A_?@<;#{yAHmq(DVfZxywIu@*YXbeg??yaD4yX(` zruU-bE`4)-T-9j-{X~WH?o)VfOBeZq$6t`=IrQgGmvPiM;CUTP0C>BZ^5ix*wx)nx z!K0FLT^&B-(W=}RK{hAC;bgRoQc>gAt~I7xVc?y_VA)X4u&H!lWtnnmUee!+?uCjW zND&%PsYZ^D+p%_EQQ9rKt?Af@b(+4=4!C?2!dM?~fSd-^}Z C1Y9cs delta 1525 zcmYMyT}&KR6bJA-y2ytV5k$Ziye@2Iq200+TnZ6ttk!R&Dv&6eVdn1c4YPBn^Fc9H ziN5s3#I(0{G-^^}HT8isX|1ubL=!YIF>Q&)ev$T5OXJAPa6vosam_?*9qkaGy<;XUxc&4iT0cj4{uLs$>b!aLvv zSOb46x(?NSWs$=5yI>pQ9R+8|7#8Y**Wmy>3P<6O@K)GSLP#l0!M$)0rr;r12fu{9 za1q`Kt8OV27=x;z9dIjr0`7tyL~1ezE65BXr?F5E&cn^{C)fn9Le*IncHaZH!WK9Q zyWv|+pBP-&Wv$>`&&<=56o_R2!~ARY+-N zA#Q=H(|)K59WKUM7)AUVd>qcgPPkIM-n@yBM-X>I2496pO_m{QC2MeI6pO#H*b9fM z2%#{9>cP*U>Oezv)vyJs4ZES5z$jFse-mQ*{0*Yz^Ft|LK*Grb_lD7kD=b#rrJ>vl41+O~ znR5L2fTXjfvf?Dc(~SE9&7we`xjAm@rs$(tKWE8fzjn1hG|h~_&)Po?5s}HJQKKjB0N>5Z7Y8?V+$7zCc?kUw7wV8s&|4HZ3YGpP;+3@v~F1#0FHyp za!3^93ojl9-6MwXX7c0Ea}%7|KBLT5<8ySCn6^3Gn8bmKhaEAkIg-{57S6}C&7swy z4Tt}9Xzk%ZQrlUMX?QFXa5L;oX)IS?$`Rliv!x-{{wmoeAoa0 diff --git a/sphinx/locale/gl/LC_MESSAGES/sphinx.po b/sphinx/locale/gl/LC_MESSAGES/sphinx.po index 4f7f87f1afa..8f4fd2e3749 100644 --- a/sphinx/locale/gl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/gl/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,21 +8,21 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Miguel Anxo Bouzada , 2023\n" "Language-Team: Galician (http://app.transifex.com/sphinx-doc/sphinx-1/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "Non é posíbel atopar o directorio de orixe (%s)" +msgstr "Non é posíbel atopar o directorio fonte (%s)" #: sphinx/application.py:161 #, python-format @@ -31,111 +31,111 @@ msgstr "O directorio de saída (%s) non é un directorio" #: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" -msgstr "O directorio de orixe e o directorio de destino non poden ser idénticos" +msgstr "O directorio fonte e o directorio de destino non poden ser idénticos" #: sphinx/application.py:197 #, python-format msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "Este proxecto necesita polo menos Sphinx v%s e, polo tanto, non se pode construír con esta versión." +msgstr "Este proxecto necesita polo menos Sphinx v%s e, polo tanto, non é posíbel compilalo con esta versión." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" -msgstr "facendo o directorio de saída" +msgstr "creando o directorio de saída" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "ao configurar a extensión %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "«setup» tal como se define actualmente en conf.py non é un invocábel de Python. Modifique a súa definición para que sexa unha función invocábel. Isto é necesario para que conf.py se comporte como unha extensión Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducións [%s]…" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "feito" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "non dispoñíbel para mensaxes integradas" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" -msgstr "cargando ambiente en preparado (pickled)" +msgstr "cargando o contorno preparado –pickled–" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "produciuse un fallo: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" -msgstr "Non se seleccionou ningún construtor, usando de xeito predeterminado: html" +msgstr "Non foi seleccionado ningún construtor, de xeito predeterminado usase: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "conseguido" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" -msgstr "rematou con problemas" +msgstr "finalizou con problemas" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." -msgstr "compilación %s,%s advertencia (coas advertencias tratadas como erros)." +msgstr "construción %s,%s advertencia (coas advertencias tratadas como erros)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." -msgstr "compilación %s,%s advertencias (coas advertencias tratadas como erros)." +msgstr "construción %s,%s advertencias (coas advertencias tratadas como erros)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." -msgstr "compilación %s, %s advertencia." +msgstr "construción %s, %s advertencia." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." -msgstr "compilación %s, %s advertencias." +msgstr "construción %s, %s advertencias." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." -msgstr "compilación %s." +msgstr "construción %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a clase de nodo %r xa está rexistrada, os seus visitantes van ser substituídos" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a directiva %r xa está rexistrada, vai ser substituída" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "o rol %r xa está rexistrado, vai ser substituído" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,1087 +143,1129 @@ msgid "" "explicit" msgstr "a extensión %s non declara se é segura para a lectura en paralelo, asumindo que non o sexa; pídalle ao autor da extensión que o comprobe e que o faga explícito" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensión %s non é segura para a lectura en paralelo" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "a extensión %s non declara se é segura para a escritura en paralelo, asumindo que non o sexa; pídalle ao autor da extensión que o comprobe e que o faga explícito" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" -msgstr "" +msgstr "a extensión %s non é segura para a escritura en paralelo" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "seriando %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "o directorio de configuración non contén un ficheiro conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." -msgstr "" +msgstr "Atopouse un valor de configuración non válido: «language = None». Actualice a súa configuración a un código de idioma válido. Volvendo a «en» (inglés)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" -msgstr "" +msgstr "non é posíbel substituír o axuste de configuración do dicionario %r, é ignorado (use %r para definir elementos individuais)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "" +msgstr "o número %r non é válido para o valor de configuración %r, é ignorado" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "" +msgstr "non é posíbel anular o axuste de configuración %r cun tipo non compatíbel, é ignorado" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "" +msgstr "valor de configuración descoñecido %r na substitución, é ignorado" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" +msgstr "O valor de configuración %r xa está presente" + +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" -msgstr "" +msgstr "Hai un erro de sintaxe no seu ficheiro de configuración: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "O ficheiro de configuración (ou un dos módulos que importa) chama a sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" +msgstr "Hai un erro programábel no seu ficheiro de configuración:\n\n%s" + +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "" +msgstr "O valor de configuración «source_suffix» agarda unha cadea, lista de cadeas ou dicionario. Mais Vde. da «%r»." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" -msgstr "" +msgstr "Sección %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" -msgstr "" +msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" -msgstr "" +msgstr "Táboa %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" -msgstr "" +msgstr "Listaxe %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" +msgstr "O valor de configuración «{name}» ten que ser un de {candidates}, mais Vde. da «{current}»." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." -msgstr "" +msgstr "O valor de configuración «{name}» ten o tipo «{current.__name__}»; agardábase {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." -msgstr "" +msgstr "O valor de configuración «{name}» ten o tipo «{current.__name__}»; o valor predeterminado é «{default.__name__}»." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." -msgstr "" +msgstr "Non se atopou primary_domain %r non atopado, é ignorado." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "" +msgstr "Desde a versión 2.0, Sphinx usa «index» como root_doc como predeterminado. Engada «root_doc = 'contents'» ao seu conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" -msgstr "" +msgstr "O evento %r xa está presente" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" -msgstr "" +msgstr "Nome de evento descoñecido: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "O controlador %r do evento %r lanzou unha excepción" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "Os axustes de needs_extensions, precisan a extensión %s, mais non está cargada." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." -msgstr "" +msgstr "Este proxecto necesita a extensión %s polo menos na versión %s e, polo tanto, non é posíbel compilar coa versión cargada (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "" +msgstr "O nome do analizador léxico Pygments %r é descoñecido" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "" +msgstr "A analise léxica de literal_block %r como «%s» provocou un erro no testemuño: %r. Tentando de novo en modo relaxado." -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "atopáronse varios ficheiros para o documento «%s»: %r\nUse %r para a construción." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." -msgstr "" +msgstr "Ignorouse o documento ilexíbel %r." -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "" +msgstr "A clase %s do construtor non ten atributo «name»" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" -msgstr "" +msgstr "O construtor %r xa existe (no módulo %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "" +msgstr "O nome do construtor %s non está rexistrado ou dispoñíbel a través do punto de entrada" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" -msgstr "" +msgstr "O nome do construtor %s non está rexistrado" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" -msgstr "" +msgstr "o dominio %s xa está rexistrado" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" -msgstr "" +msgstr "o dominio %s aínda non está rexistrado" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" -msgstr "" +msgstr "A directiva %r xa está rexistrada no dominio %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" -msgstr "" +msgstr "O rol %r xa está rexistrado no dominio %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" -msgstr "" +msgstr "O índice %r xa está rexistrado no dominio %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "O object_type %r xa está rexistrado" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "O crossref_type %r xa está rexistrado" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "source_sufix %r xa está rexistrado" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" -msgstr "" +msgstr "source_parser para %r xa está rexistrado" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "O analizador de fontes para %s non está rexistrado" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" -msgstr "" +msgstr "Xa existe o tradutor para %r" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "" +msgstr "Os argumentos de palabras clave –kwargs– para add_node() deben ser tuplas de funcións «(visitar, saír)»: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r xa está rexistrado" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" -msgstr "" +msgstr "O representador matemático %s xa está rexistrado" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "" +msgstr "a extensión %r xa estaba fusionada con Sphinx dende a versión %s; esta extensión é ignorada." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" -msgstr "" +msgstr "Excepción orixinal:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" -msgstr "" +msgstr "Non foi posíbel importar a extensión %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" -msgstr "" +msgstr "a extensión %r non ten ningunha función setup(); é realmente un módulo de extensión Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." -msgstr "" +msgstr "A extensión %s utilizada por este proxecto necesita polo menos Sphinx v%s e, polo tanto, non é posíbel compilar con esta versión." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" -msgstr "" +msgstr "a extensión %r devolveu un obxecto non compatíbel dende a súa función setup(); debería devolver «None» ou un dicionario de metadatos" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "" +msgstr "Propostas de mellora de Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "número PEP non válido %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" +msgstr "número RFC non válido %s" + +#: sphinx/theming.py:125 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "o axuste %s.%snon aparece en ningunha das configuracións de temas buscadas" + +#: sphinx/theming.py:140 +#, python-format +msgid "unsupported theme option %r given" +msgstr "a opción %r non é compatíbel co tema" + +#: sphinx/theming.py:206 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "o ficheiro %r na ruta do tema non é un ficheiro zip válido ou non contén ningún tema" + +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:262 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:269 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:323 sphinx/theming.py:374 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:327 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:331 sphinx/theming.py:377 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "" +msgstr "non se atopou unha imaxe axeitada para o construtor %s: %s (%s)" #: sphinx/builders/__init__.py:187 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "" +msgstr "non se atopou unha imaxe axeitada para o construtor %s: %s" #: sphinx/builders/__init__.py:207 msgid "building [mo]: " -msgstr "" +msgstr "construíndo [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " -msgstr "" +msgstr "escribindo a saída…" #: sphinx/builders/__init__.py:217 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "todos, os %d, ficheiros «po»" #: sphinx/builders/__init__.py:235 #, python-format msgid "targets for %d po files that are specified" -msgstr "" +msgstr "obxectivos para os %d ficheiros «po» que se especifican" #: sphinx/builders/__init__.py:243 #, python-format msgid "targets for %d po files that are out of date" -msgstr "" +msgstr "obxectivos para os %d ficheiros «po» que están desactualizados" #: sphinx/builders/__init__.py:252 msgid "all source files" -msgstr "" +msgstr "todos os ficheiros fonte" #: sphinx/builders/__init__.py:262 #, python-format msgid "file %r given on command line does not exist, " -msgstr "" +msgstr "o ficheiro %r indicado na liña de ordes non existe," #: sphinx/builders/__init__.py:267 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "o ficheiro %r indicado na liña de ordes non está no directorio fonte, é ignorado" #: sphinx/builders/__init__.py:273 #, python-format msgid "file %r given on command line is not a valid document, ignoring" -msgstr "" +msgstr "o ficheiro %r indicado na liña de ordes non é un documento válido, é ignorado" #: sphinx/builders/__init__.py:282 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "%d ficheiros fonte indicados na liña de ordes" #: sphinx/builders/__init__.py:294 #, python-format msgid "targets for %d source files that are out of date" -msgstr "" +msgstr "obxectivos para %d ficheiros fonte que non están actualizados" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "construíndo [%s]: " #: sphinx/builders/__init__.py:316 msgid "looking for now-outdated files... " -msgstr "" +msgstr "buscando ficheiros xa desactualizados…" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" -msgstr "" +msgstr "atopouse %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" -msgstr "" +msgstr "non se atopou nada" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" -msgstr "" +msgstr "preparando –pickling– o contorno" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" -msgstr "" +msgstr "comprobando a coherencia" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." -msgstr "" +msgstr "non hai ningún obxectivo desactualizado" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " -msgstr "" +msgstr "actualizando o contorno:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" -msgstr "" +msgstr "%s engadido(s), %s cambiado(s), %s retirado(s)" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " -msgstr "" +msgstr "lendo as fontes…" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" -msgstr "" +msgstr "nomes de documentos –docnames– para escribir: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" -msgstr "" +msgstr "preparando os documentos" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" -msgstr "" +msgstr "copiando activos" #: sphinx/builders/_epub_base.py:215 #, python-format msgid "duplicated ToC entry found: %s" -msgstr "" +msgstr "atopouse unha entrada do Índice duplicada: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " -msgstr "" +msgstr "copiando as imaxes…" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "non é posíbel ler o ficheiro de imaxe %r: no seu canto cópieo" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "non é posíbel copiar o ficheiro de imaxe %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" -msgstr "" +msgstr "non é posíbel escribir o ficheiro de imaxe %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" -msgstr "" +msgstr "non se atopou «Pillow»: copiando ficheiros de imaxe" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." -msgstr "" +msgstr "escribindo o ficheiro tipo MIME…" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." -msgstr "" +msgstr "escribindo o ficheiro META-INF/container.xml…" #: sphinx/builders/_epub_base.py:508 msgid "writing content.opf file..." -msgstr "" +msgstr "escribindo o ficheiro content.opf…" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "tipo MIME descoñecido para %s, é ignorado" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." -msgstr "" +msgstr "escribindo o ficheiro toc.ncx…" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "escribindo o ficheiro %s…" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "O ficheiro de vista xeral está en %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." -msgstr "" +msgstr "sen cambios na versión %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." -msgstr "" +msgstr "escribindo o ficheiro de resumo…" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" -msgstr "" +msgstr "Integrados" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" -msgstr "" +msgstr "Nivel de módulo" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." -msgstr "" +msgstr "copiando os ficheiros fonte…" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" -msgstr "" +msgstr "non foi posíbel ler %r para a creación do rexistro de cambios" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." -msgstr "" +msgstr "O simulador do construtor non xera ficheiros." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "O ficheiro ePub está en %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "escribindo o ficheiro nav.xhtml…" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_language» (ou «idioma») non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "o valor de configuración epub_uid» debería ser NOME XML para EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_title» (ou «html_title») non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_author» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_contributor» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_description» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_publisher» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_copyright» (ou «copyright») non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «epub_identifier» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "o valor de configuración «version» non pode estar baleiro para EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "css_file non válido: %r, é ignorado" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "os catálogos de mensaxes están en %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "obxectivos para %d ficheiros de modelos" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " -msgstr "" +msgstr "lendo os modelos…" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " -msgstr "" +msgstr "escribindo os catálogos de mensaxes…" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "Buscar algún erro na saída anterior ou en %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "ligazón rachada: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "Produciuse un erro ao compilar a expresión regular en «linkcheck_allowed_redirects»: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "As páxinas do manual están en %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" -msgstr "" +msgstr "non se atopou ningún valor de configuración «man_pages»; non se escribirá ningunha páxina de manual" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" -msgstr "" +msgstr "escribindo" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" -msgstr "" +msgstr "o valor de configuración «man_pages» fai referencia a un documento %s descoñecido" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." -msgstr "" +msgstr "A páxina HTML está en %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" -msgstr "" +msgstr "estase a montar un documento único" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" -msgstr "" +msgstr "escribindo ficheiros adicionais" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Os ficheiros «Texinfo» están en %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "" +msgstr "\nExecute «make» nese directorio para executalos a través de makeinfo\n(use aquí «make info» para facelo automaticamente)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "non se atopou ningún valor de configuración «texinfo_documents»; non se escribirá ningún documento" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "o valor de configuración «texinfo_documents» fai referencia a un documento %s descoñecido" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" -msgstr "" +msgstr "procesando %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." -msgstr "" +msgstr "resolvendo referencias…" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " -msgstr "" +msgstr "(en" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" -msgstr "" +msgstr "copiando os ficheiros de compatibilidade de Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" -msgstr "" +msgstr "produciuse un erro ao escribir o ficheiro «Makefile»: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "os ficheiros de texto están en %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "produciuse un erro ao escribir o ficheiro %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "Os ficheiros XML están en %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "Os ficheiros pseudo-XML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "o ficheiro de información da construción rachou: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "As páxinas HTML están en %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "Produciuse un fallo ao ler o ficheiro de información da construción: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" -msgstr "" +msgstr " %d.%b.%Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" -msgstr "" +msgstr "Índice xeral" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" -msgstr "" +msgstr "índice" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" -msgstr "" +msgstr "seguinte" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" -msgstr "" +msgstr "anterior" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" -msgstr "" +msgstr "xerando os índices" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" -msgstr "" +msgstr "escribindo as páxinas adicionais" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " -msgstr "" +msgstr "copiando os ficheiros descargábeis…" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" -msgstr "" +msgstr "non é posíbel copiar o ficheiro descargábel %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "" +msgstr "Produciuse un fallo ao copiar un ficheiro en html_static_file: %s: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" -msgstr "" +msgstr "copiando os ficheiros estáticos" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "non é posíbel copiar o ficheiro estático %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" -msgstr "" +msgstr "copiando os ficheiros adicionais" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "non é posíbel copiar o ficheiro adicional %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" -msgstr "" +msgstr "Produciuse un fallo ao escribir o ficheiro de información da construción: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "" +msgstr "non foi posíbel cargar o índice de busca, mais non se compilarán todos os documentos: o índice estará incompleto." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "" +msgstr "a páxina %s coincide con dous patróns en html_sidebars: %r e %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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 "" +msgstr "Produciuse un erro Unicode ao representar a páxina %s. Asegúrese de que todos os valores de configuración que teñan contido non ASCII sexan cadeas Unicode." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "Produciuse un erro ao representar a páxina %s.\nMotivo: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" -msgstr "" +msgstr "envorcado do inventario de obxectos" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" -msgstr "" +msgstr "envorcando o índice de busca en %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "js_file non válido: %r, é ignorado" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "Moitos math_renderers están rexistrados. Mais non foi seleccionado ningún math_renderer." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "Indicou un math_renderer descoñecido %r." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" -msgstr "" +msgstr "A entrada html_extra_path %r non existe" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" -msgstr "" +msgstr "A entrada html_extra_path %r colócase dentro do directorio de saída «outdir»" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" -msgstr "" +msgstr "A entrada html_static_path %r non existe" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" -msgstr "" +msgstr "A entrada html_static_path %r colócase dentro do directorio de saída «outdir»" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "o ficheiro de logotipo %r non existe" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "o ficheiro de favicon %r non existe" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" -msgstr "" +msgstr "Sphinx xa non admite HTML 4. (nas opcións de configuración detectouse «html4_writer=True»)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" -msgstr "" +msgstr "Documentación %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "Os ficheiros LaTeX están en %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\nExecute «make» nese directorio para executalos a través de (pdf)latex\n(use aquí «make latexpdf» para facelo automaticamente)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "non se atopou ningún valor de configuración «latex_documents»; non se escribirá ningún documento" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "" +msgstr "o valor de configuración «latex_documents» fai referencia a un documento %s descoñecido" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" -msgstr "" +msgstr "Índice" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" -msgstr "" +msgstr "Publicación" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" -msgstr "" +msgstr "non hai ningunha opción de «Babel» coñecida para o idioma %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" -msgstr "" +msgstr "copiando os ficheiros de compatibilidade de TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." -msgstr "" +msgstr "copiando os ficheiros de compatibilidade de TeX…" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" -msgstr "" +msgstr "copiando os ficheiros adicionais" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." -msgstr "" +msgstr "Chave de configuración descoñecida: latex_elements[%r], é ignorada." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "" +msgstr "Opción de tema descoñecida: latex_theme_options[%r], é ignorada." #: sphinx/builders/latex/theming.py:87 #, python-format msgid "%r doesn't have \"theme\" setting" -msgstr "" +msgstr "%r non ten o axuste «theme»" #: sphinx/builders/latex/theming.py:90 #, python-format msgid "%r doesn't have \"%s\" setting" -msgstr "" +msgstr "%r non ten o axuste «%s»" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" -msgstr "" +msgstr "Produciuse un fallo ao obter un nome de documento «docname»!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" -msgstr "" +msgstr "Produciuse un fallo ao obter un nome de documento «docname» para a fonte {source!r}!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" -msgstr "" +msgstr "Non se atopou ningunha nota a rodapé para o nodo de referencia %r indicado" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "Produciuse unha excepción durante a construción, iniciando o depurador:" #: sphinx/cmd/build.py:61 msgid "Interrupted!" -msgstr "" +msgstr "Interrompido!" #: sphinx/cmd/build.py:63 msgid "reST markup error:" -msgstr "" +msgstr "Produciuse un erro de marcado reST:" #: sphinx/cmd/build.py:69 msgid "Encoding error:" -msgstr "" +msgstr "Produciuse un erro de codificación:" #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." -msgstr "" +msgstr "O rastrexo completo foi gardado en %s, se quere informar do incidente aos desenvolvedores." #: sphinx/cmd/build.py:76 msgid "Recursion error:" -msgstr "" +msgstr "Produciuse un erro de recursividade:" #: sphinx/cmd/build.py:79 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "Isto pode ocorrer con ficheiros fonte moi grandes ou profundamente aniñados. Pode aumentar coidadosamente o límite de recursividade predeterminado de Python de 1000 en conf.py, p. ex.:" #: sphinx/cmd/build.py:84 msgid "Exception occurred:" -msgstr "" +msgstr "Produciuse unha excepción:" #: sphinx/cmd/build.py:90 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." -msgstr "" +msgstr "Infórmeo tamén se se trata dun erro do usuario, para que a próxima vez se poida fornecer unha mensaxe de erro mellor." #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at . Thanks!" -msgstr "" +msgstr "Pódese presentar un informe no seguimento de erros en https://github.com/sphinx-doc/sphinx/issues. Grazas!" #: sphinx/cmd/build.py:109 msgid "job number should be a positive number" -msgstr "" +msgstr "o número de traballo debe ser un número positivo" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." -msgstr "" +msgstr "Para obter máis información, visite https://www.sphinx-doc.org/." #: sphinx/cmd/build.py:118 msgid "" @@ -1242,285 +1284,292 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nXerar documentación a partir de ficheiros fonte.\n\n«sphinx-build» xera a documentación a partir dos ficheiros en SOURCEDIR e colócaa en OUTPUTDIR. Busca «conf.py» en SOURCEDIR para os axustes de configuración. A ferramenta «sphinx-quickstart» pódese usar para xerar ficheiros de modelos, incluído «conf.py»\n\n«sphinx-build» pode crear documentación en diferentes formatos. Selecciónase un formato especificando o nome do construtor na liña de ordes; o predeterminado é HTML. Os construtores tamén poden realizar outras tarefas relacionadas co procesamento da documentación.\n\nDe xeito predeterminado, todo o que está desactualizado está compilado. Pódese compilar só a saída para os ficheiros seleccionados especificando os nomes de ficheiro individuais.\n" #: sphinx/cmd/build.py:139 msgid "path to documentation source files" -msgstr "" +msgstr "ruta aos ficheiros fonte da documentación" #: sphinx/cmd/build.py:141 msgid "path to output directory" -msgstr "" +msgstr "ruta ao directorio de saída" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" -msgstr "" +msgstr "opcións xerais" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" +msgstr "escribir todos os ficheiros (predeterminado: escribir só os ficheiros novos e modificados)" + +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" -msgstr "" - -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "non use un contorno gardado, lea sempre todos os ficheiros" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" -msgstr "" +msgid "override a setting in configuration file" +msgstr "substituír un axuste no ficheiro de configuración" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgid "pass a value into HTML templates" +msgstr "pasar un valor a modelos HTML" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "definir etiqueta: inclúír «só» bloques con TAG" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "opcións de saída da consola" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" -msgstr "" +msgstr "aumenta a verbosidade (pódese repetir)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" -msgstr "" +msgstr "sen saída en «stdout», só advertencias en «stderr»" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" -msgstr "" +msgstr "sen ningunha saída, nin sequera advertencias" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "emite unha saída de cor (predeterminado: detección automática)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" +msgstr "non emite unha saída de cor (predeterminado: detección automática)" + +#: sphinx/cmd/build.py:199 +msgid "warning control options" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "escribe as advertencias (e os erros) no ficheiro indicado" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" -msgstr "" +msgstr "converte as advertencias en erros" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" -msgstr "" +msgstr "amosa o rastrexo completo na excepción" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" -msgstr "" +msgstr "executar Pdb nunha excepción" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "non é posíbel combinar a opción -a e os nomes de ficheiro" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "non é posíbel abrir o ficheiro de advertencia %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "a opción de argumento -D debe estar na forma nome=valor" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "a opción de argumento -A debe estar na forma nome=valor" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" -msgstr "" +msgstr "inserir automaticamente as cadeas literais –docstrings– dos módulos" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgstr "proba automaticamente fragmentos de código en bloques de probas –doctest–" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" -msgstr "" +msgstr "ligazón entre a documentación de Sphinx de diferentes proxectos" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" +msgstr "escribir entradas «todo» que se poden amosar ou agochar na construción" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" -msgstr "" +msgstr "comproba a cobertura da documentación" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" -msgstr "" +msgstr "incluír matemáticas, representadas como imaxes PNG ou SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgstr "incluír matemáticas, representadas no navegador por MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" -msgstr "" +msgstr "inclusión condicional de contido baseado en valores de configuración" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" -msgstr "" +msgstr "incluír ligazóns ao código fonte dos obxectos Python documentados" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "crear un ficheiro «.nojekyll» para publicar o documento nas páxinas de GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." -msgstr "" +msgstr "Introduza un nome de ruta válido." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." -msgstr "" +msgstr "Introduza algún texto." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "Introduza un dos %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Introduza «y» ou «n»." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "Introduza un sufixo de ficheiro, p. ex. «.rst» ou «.txt»." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Dámoslle a benvida á utilidade de inicio rápido de Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "Introduza os valores para os seguintes axustes (tan só prema Intro para\naceptar un valor predeterminado, se se dá entre corchetes)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" -msgstr "" +msgstr "Ruta raíz seleccionada: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." -msgstr "" +msgstr "Introduza a ruta raíz para a documentación." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" -msgstr "" +msgstr "Ruta raíz para a documentación" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "Erro: atopouse un ficheiro «conf.py» xa existente na ruta raíz seleccionada." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "«sphinx-quickstart» non sobrescribirá os proxectos Sphinx existentes." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "Introduza unha nova ruta raíz (ou simplemente Intro para saír)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." -msgstr "" +msgstr "Ten dúas opcións para poñer o directorio de construción para a saída de Sphinx.\nOu utiliza un directorio «_build» dentro da ruta raíz, ou separa os directorios\n«fonte» e «construción» dentro da ruta raíz." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "Separar os directorios fonte e construción (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." -msgstr "" +msgstr "Dentro do directorio raíz, crearanse dous directorios máis; «_templates» para\nmodelos HTML personalizados e «_static» para follas de estilo personalizadas e\noutros ficheiros estáticos. Pode introducir outro prefixo (como «.») para substituír\no guión baixo." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "Prefixo de nome para os directorios de modelos e de estáticos" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "O nome do proxecto aparecerá en varios lugares da documentación compilada." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" -msgstr "" +msgstr "Nome do proxecto" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" -msgstr "" +msgstr "Nome(s) do(s) autor(es)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "Sphinx ten a noción dunha «versión» e unha «publicación» para o\nsoftware. Cada versión pode ter varias publicacións. Por exemplo, para\nPython a versión é algo como 2.5 ou 3.0, mentres que a publicación \né algo como 2.5.1 ou 3.0a1. Se non precisa esta estrutura dual,\nsimplemente estabeleza ambas ao mesmo valor." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" -msgstr "" +msgstr "Versión do proxecto" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" -msgstr "" +msgstr "Publicación do proxecto" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1528,115 +1577,115 @@ msgid "" "\n" "For a list of supported codes, see\n" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -msgstr "" +msgstr "Se os documentos deben escribirse noutro idioma que non sexa o inglés,\npode seleccionar un idioma aquí mediante o seu código de idioma. Sphinx\ntraducirá entón o texto que xere a ese idioma.\n\n\nPara obter unha lista de códigos de idioma admitidos, consulte\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" -msgstr "" +msgstr "Idioma do proxecto" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "O sufixo do nome do ficheiro para os ficheiros fonte. Normalmente,\nisto é «.txt» ou «.rst». Só os ficheiros con este sufixo son considerados\ndocumentos." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" -msgstr "" +msgstr "Sufixo do ficheiro fonte" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" "of the documents. Normally, this is \"index\", but if your \"index\"\n" "document is a custom template, you can also set this to another filename." -msgstr "" +msgstr "Un documento é especial no senso de que se considera o nodo superior\nda «árbore de contidos», é dicir, é a raíz da estrutura xerárquica dos\ndocumentos. Normalmente, isto é «índice», pero se o seu documento\n«índice» é un modelo personalizado, tamén pode definilo con outro nome\nde ficheiro." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "Nome do documento principal (sen sufixo)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "Erro: o ficheiro mestre %s xa existe na ruta raíz seleccionada." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "«sphinx-quickstart» non sobrescribirá o ficheiro existente." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "Introduza un novo nome de ficheiro ou cambie o nome do ficheiro existente e prema Intro" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "Indique cal das seguintes extensións de Sphinx debería estar activada:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "Nota: «imgmath» e «mathjax» non poden estar activados ao mesmo tempo. Deseleccionouse «imgmath»." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." -msgstr "" +msgstr "Pódese xerar un «Makefile» e un ficheiro de ordes de Windows para que só teña que executar, p. ex. «make html» no canto de invocar «sphinx-build» directamente." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "Crear Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "Crear un ficheiro de ordes de Windows? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "Creando o ficheiro %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "O ficheiro %s xa existe, omitíndoo." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "Finalizado: creouse unha estrutura de directorio inicial." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "Agora debería encher o seu ficheiro principal %s e crear outros ficheiros fonte\nde documentación." -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "" +msgstr "Use o «Makefile» para crear os documentos, así:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" -msgstr "" +msgstr "Use a orde sphinx-build para construír os documentos, así:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." -msgstr "" +msgstr "onde «builder» é un dos construtores compatíbeis, p. ex. html, latex ou linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1644,780 +1693,785 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\nXerar os ficheiros necesarios para un proxecto Sphinx.\n\n«sphinx-quickstart» é unha ferramenta interactiva que fai algunhas preguntas sobre o seu proxecto e após xera un directorio da documentación completa e un «Makefile» de mostra para usar con «sphinx-build».\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" -msgstr "" +msgstr "modo silencioso" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" -msgstr "" +msgstr "raíz do proxecto" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" -msgstr "" +msgstr "Opcións de estrutura" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "se se especifica, separe os directorios fonte e construción" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" -msgstr "" +msgstr "se se especifica, cree o directorio de construción baixo o directorio fonte" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." -msgstr "" +msgstr "substitución de punto en _modelos, etc." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" -msgstr "" +msgstr "Opcións básicas do proxecto" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" -msgstr "" +msgstr "nome do proxecto" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" -msgstr "" +msgstr "nome(s) do(s) autor(es)" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" -msgstr "" +msgstr "versión do proxecto" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" -msgstr "" +msgstr "publicacaión do proxecto" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" -msgstr "" +msgstr "idioma do documento" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" -msgstr "" +msgstr "sufixo do ficheiro fonte" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" -msgstr "" +msgstr "nome do documento mestre" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" -msgstr "" +msgstr "usar epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" -msgstr "" +msgstr "Opcións de extensión" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "activar a extensión %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" -msgstr "" +msgstr "activar extensións arbitrarias" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "Creación de Makefile e Batchfile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" -msgstr "" +msgstr "crear «makefile»" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" -msgstr "" +msgstr "non crear o «makefile»" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" -msgstr "" +msgstr "crear «batchfile»" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" -msgstr "" +msgstr "non crear o «batchfile»" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" -msgstr "" +msgstr "usar «make-mode» para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" -msgstr "" +msgstr "non usar «make-mode» para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" -msgstr "" +msgstr "Modelos de proxectos" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" -msgstr "" +msgstr "directorio de modelos para ficheiros de modelos" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" -msgstr "" +msgstr "definir unha variábel de modelo" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "" +msgstr "especifícase «silencioso» –quiet–, mais non se especifica ningún «proxecto» –project– ou «autor» –author–" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "Erro: a ruta especificada non é un directorio ou xa existen ficheiros Sphinx." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "«sphinx-quickstart» só xera nun directorio baleiro. Especifique unha nova ruta raíz." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "Variábel de modelo non válida: %s" #: sphinx/directives/code.py:61 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "«dedent» elimina os espazos en branco" #: sphinx/directives/code.py:82 #, python-format msgid "Invalid caption: %s" -msgstr "" +msgstr "Lenda non válida: %s" #: sphinx/directives/code.py:127 sphinx/directives/code.py:277 #: sphinx/directives/code.py:453 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "o número de liña especificado está fóra do intervalo (1-%d): %r" #: sphinx/directives/code.py:206 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "" +msgstr "Non é posíbel usar as opcións «%s» e «%s»." #: sphinx/directives/code.py:220 #, python-format msgid "Include file %r not found or reading it failed" -msgstr "" +msgstr "No foi atopado o ficheiro incluido %r ou fallou a lectura" #: sphinx/directives/code.py:223 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" -msgstr "" +msgstr "A codificación de %r utilizada para ler o ficheiro incluído %r semella ser incorrecta, probe a dar unha opción «:encoding:»" #: sphinx/directives/code.py:260 #, python-format msgid "Object named %r not found in include file %r" -msgstr "" +msgstr "Non se atopou o obxecto chamado %r no ficheiro incluído %r" #: sphinx/directives/code.py:286 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" -msgstr "" +msgstr "Non é posíbel usar «lineno-match» cun conxunto disxunto de «liñas»" #: sphinx/directives/code.py:291 #, python-format msgid "Line spec %r: no lines pulled from include file %r" -msgstr "" +msgstr "Especificación de liña %r: non se extraeron liñas do ficheiro de inclusión %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "O padrón global da árbore de índice –toctree– %r non coincide con ningún documento" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" -msgstr "" +msgstr "A arbore de índice –toctree– contén referencia ao documento excluído %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "A arbore de índice –toctree– contén referencia a un documento que non existe %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "atopouse unha entrada duplicada na árbore de índice –toctree–: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " -msgstr "" +msgstr "Autor da sección:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " -msgstr "" +msgstr "Autor do módulo:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " -msgstr "" +msgstr "Autor do código:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " -msgstr "" +msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" -msgstr "" +msgstr ".. o contido dos recoñecementos –acks– non é unha lista" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" -msgstr "" +msgstr ".. o contido do historial –hlist– non é unha lista" #: sphinx/directives/patches.py:66 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "" +msgstr "A opción «:file:» para a directiva «csv-table» agora recoñece unha ruta absoluta como unha ruta relativa dende o directorio fonte. Actualice o seu documento." #: sphinx/domains/__init__.py:397 #, python-format msgid "%s %s" -msgstr "" - -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" +msgstr "%s %s" #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" +msgid "Added in version %s" msgstr "" #: sphinx/domains/changeset.py:24 #, python-format msgid "Changed in version %s" -msgstr "" +msgstr "Cambiado na versión %s" #: sphinx/domains/changeset.py:25 #, python-format msgid "Deprecated since version %s" -msgstr "" - -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "Obsoleto dende a versión %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "" +msgid "duplicate citation %s, other instance in %s" +msgstr "cita duplicada %s, outra instancia en %s" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" +msgid "Citation [%s] is not referenced." +msgstr "A cita [%s] non está referenciada." -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" -msgstr "" +msgstr "%s() (función integrada)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" -msgstr "" +msgstr " %s() (método %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" -msgstr "" +msgstr "%s() (clase)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" -msgstr "" +msgstr "%s (variábel global ou constante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" -msgstr "" +msgstr "%s (%s atributo)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" -msgstr "" +msgstr "Argumentos" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Lanzamentos" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Retorna" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipo de retorno" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" -msgstr "" +msgstr "%s (módulo)" + +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "función" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" -msgstr "" +msgstr "método" + +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "clase" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" -msgstr "" +msgstr "datos" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" -msgstr "" +msgstr "atributo" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" -msgstr "" +msgstr "módulo" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" -msgstr "" +msgstr "descrición do/a %sduplicado/a de %s, outro/a %s en %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" -msgstr "" +msgstr "etiqueta duplicada da ecuación %s, outra instancia en %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" -msgstr "" +msgstr "«math_eqref_format» non válido: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (opción da directiva)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "opción da directiva" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rol" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "descrición duplicada de %s %s, outra instancia en %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Declaración C duplicada, tamén definida en %s:%s.\nA declaración é «.. c:%s:: %s»." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parámetros" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Valores de retorno" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membro" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variábel" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "estrutura" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "unión" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enumeración" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerador" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipo" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "parámetro de función" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parámetros do modelo" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Declaración C++ duplicada, tamén definida en %s:%s.\nA declaración é «.. cpp:%s:: %s»." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concepto" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "parámetro de modelo" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" -msgstr "" +msgstr "%s() (no modulo %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" -msgstr "" +msgstr "%s no modulo %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" -msgstr "" +msgstr "%s (variábel integrada)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" -msgstr "" +msgstr "%s (clase integrada)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" -msgstr "" +msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" -msgstr "" +msgstr "%s() (%s método de clase)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" -msgstr "" +msgstr "%s() (%s método estático)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%s (%s propiedade)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" -msgstr "" +msgstr " Índice de módulos Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" -msgstr "" +msgstr "módulos" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" -msgstr "" +msgstr "Obsoleto" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" -msgstr "" +msgstr "excepción" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" -msgstr "" +msgstr "método de clase" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" -msgstr "" +msgstr "método estático" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" -msgstr "" +msgstr "propiedade" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" -msgstr "" +msgstr "descrición do obxecto duplicado de %s, outra instancia en %s, use «:no-index:» para un deles" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "" +msgstr "atopouse máis dun obxectivo para a referencia cruzada %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" -msgstr "" - -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" +msgstr "(obsoleto)" -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variábeis" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Eleva" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" -msgstr "" +msgstr "variábel de contorno; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "" +msgstr "Descrición da opción %r incorrecta, debería parecerse a «opt», «-opt args», «--opt args», «/opt args» ou «+opt args»" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" -msgstr "" +msgstr "opción de liña de ordes %s" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" -msgstr "" +msgstr "opción de liña de ordes" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" -msgstr "" +msgstr "o termo do glosario debe ir precedido dunha liña baleira" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" -msgstr "" +msgstr "os termos do glosario non deben estar separados por liñas baleiras" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" -msgstr "" +msgstr "o glosario parece ter un formato incorrecto, comprobe a sangría" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" -msgstr "" +msgstr "termo do glosario" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" -msgstr "" +msgstr "testemuño gramatical" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" -msgstr "" +msgstr "etiqueta de referencia" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" -msgstr "" +msgstr "variábel de contorno" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" -msgstr "" +msgstr "opción do programa" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" -msgstr "" +msgstr "documento" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" -msgstr "" +msgstr "Índice de módulos" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" -msgstr "" +msgstr "Páxina de busca" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "etiqueta duplicada %s, outra instancia en %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" -msgstr "" +msgstr "descrición do/a %sduplicado/a de %s, outra instancia en %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." -msgstr "" +msgstr "«numfig» está desactivado. «:numref:» é ignorado." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "" +msgstr "Produciuse un fallo ao crear unha referencia cruzada. Non se asigna ningún número: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "a ligazón non ten lenda: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "" +msgstr "numfig_format: non é válido: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" -msgstr "" +msgstr "numfig_format: non é válido: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" -msgstr "" +msgstr "etiqueta sen definir: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" -msgstr "" +msgstr "Produciuse un fallo ao crear unha referencia cruzada. Non se atopou un título ou unha lenda: %r" #: sphinx/environment/__init__.py:71 msgid "new config" -msgstr "" +msgstr "nova configuración" #: sphinx/environment/__init__.py:72 msgid "config changed" -msgstr "" +msgstr "a configuración cambiou" #: sphinx/environment/__init__.py:73 msgid "extensions changed" -msgstr "" +msgstr "as extensións cambiaron" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" -msgstr "" +msgstr "a versión do contorno de construción non é actual" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" -msgstr "" +msgstr "o directorio fonte cambiou" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "" +msgstr "Este contorno é incompatíbel co construtor seleccionado, escolla outro directorio de árbore de documentos «doctree»." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "" +msgstr "Produciuse un fallo ao escanear os documentos en %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "O dominio %r non está rexistrado" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" -msgstr "" +msgstr "o documento non está incluído en ningunha árbore de índice –toctree–" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." -msgstr "" +msgstr "atopouse unha árbore de índice –toctree– auto referenciada. É ignorado." #: sphinx/environment/adapters/indexentries.py:69 #, python-format msgid "see %s" -msgstr "" +msgstr "ver %s" #: sphinx/environment/adapters/indexentries.py:73 #, python-format msgid "see also %s" -msgstr "" +msgstr "ver tamén %s" #: sphinx/environment/adapters/indexentries.py:76 #, python-format msgid "unknown index entry type %r" -msgstr "" +msgstr "tipo de entrada de índice descoñecido %r" #: sphinx/environment/adapters/indexentries.py:187 #: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" -msgstr "" +msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "detectaronse referencias circulares na árbore de índice –toctree–, van ser ignoradas: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" -msgstr "" +msgstr "A árbore de índice contén referencia ao documento %r que non ten título: non vai ser xerada ningunha ligazón" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" -msgstr "" +msgstr "A arbore de índice –toctree– contén referencia ao documento non incluído %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "ficheiro de imaxe non lexíbel: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "ficheiro de imaxe %s non lexíbel: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "descargar o ficheiro non lexíbel: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "" +msgstr "%s xa ten asignados números de sección (árbore de índice –toctree– con numeración anidada?)" #: sphinx/ext/apidoc.py:86 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "Crearíase un ficheiro %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2427,228 +2481,228 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "" +msgstr "\nBusque recursivamente en módulos e paquetes de Python e cree\nun ficheiro reST con directivas «automodule» por paquete no .\n\nOs poden ser patróns de ficheiros e/ou directorios que se\nexcluirán da xeración.\n\nNota: De xeito predeterminada, este script non sobrescribirá os ficheiros xa creados." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" -msgstr "" +msgstr "ruta ao módulo a documentar" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "" +msgstr "patróns de ficheiros e/ou directorios estilo «fnmatch» para excluír da xeneración" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" -msgstr "" +msgstr "directorio onde poñer toda a saída" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "profundidade máxima dos submódulos para amosar no Índice (predeterminado: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" -msgstr "" +msgstr "sobrescribir os ficheiros existentes" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "seguir as ligazóns simbólicas. Potente cando se combina con «collective.recipe.omelette»." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" -msgstr "" +msgstr "executar o script sen crear ficheiros" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" -msgstr "" +msgstr "poñer a documentación de cada módulo na súa propia páxina" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" -msgstr "" +msgstr "incluír módulos «_private»" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" -msgstr "" +msgstr "nome do ficheiro do índice (predeterminado: «modules»)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" -msgstr "" +msgstr "non crear un ficheiro de índice" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "" +msgstr "non crear títulos para os paquetes ou módulos (p. ex., cando as cadeas literais –docstrings– xa os conteñan)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr "poñer a documentación do módulo antes da documentación do submódulo" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "" +msgstr "interpretar as rutas dos módulos segundo a especificación de espazos de nomes implícitos PEP-0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" -msgstr "" +msgstr "sufixo do ficheiro (predeterminado: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" -msgstr "" +msgstr "xerar un proxecto completo con «sphinx-quickstart»" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" -msgstr "" +msgstr "engadir module_path a sys.path, úsase cando se indica --full" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" -msgstr "" +msgstr "nome do proxecto (predeterminado: nome do módulo raíz)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "autor(es) do proxecto, úsase cando se indica --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" -msgstr "" +msgstr "versión do proxecto, úsase cando se indica --full" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "" +msgstr "publicación do proxecto, úsase cando se indica --full, o predeterminado é --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" -msgstr "" +msgstr "opcións de extensión" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s non é un directorio." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" -msgstr "" +msgstr "a sección «%s» é etiquetada como «%s»" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "expresión regular –regex– non válida %r en %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "" +msgstr "Rematada a proba de cobertura nas fontes, vexa os resultados en %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "expresión regular –regex– non válida %r en «coverage_c_regexes»" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" -msgstr "" +msgstr "API C non documentada: %s [%s] no ficheiro %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "non foi posíbel importar o módulo %s: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "" +msgstr "función de python non documentada: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "" +msgstr "clase de python non documentada: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "" +msgstr "método de python non documentado: %s :: %s :: %s" #: sphinx/ext/doctest.py:115 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "" +msgstr "falta «+» ou «-» na opción «%s»." #: sphinx/ext/doctest.py:120 #, python-format msgid "'%s' is not a valid option." -msgstr "" +msgstr "«%s» non é unha opción válida" #: sphinx/ext/doctest.py:134 #, python-format msgid "'%s' is not a valid pyversion option" -msgstr "" +msgstr "«%s» non é unha opción de «pyversion» válida" #: sphinx/ext/doctest.py:220 msgid "invalid TestCode type" -msgstr "" +msgstr "tipo de «TestCode» non válido" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "Finalizadas as probas de –doctests– nas fontes, vexa os resultados en %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "" +msgstr "non hai código/saída no bloque %s en %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "" +msgstr "ignorando o código da proba –doctest– non válido: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" -msgstr "" +msgstr "==================== duración de lectura máis lenta =====================" #: sphinx/ext/extlinks.py:82 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "a ligazón con codificación forte %r podería substituírse por unha ligazón externa (probe a usar %r no seu lugar)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" -msgstr "" +msgstr "A directiva Graphviz non pode ter como argumento tanto o contido como o nome de ficheiro" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" -msgstr "" +msgstr "Non se atopou o ficheiro Graphviz externo %r ou fallou a súa lectura" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." -msgstr "" +msgstr "Ignorando a directiva «graphviz» sen contido." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" -msgstr "" +msgstr "Débese estabelecer a ruta camiño executábel «graphviz_dot»! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" -msgstr "" +msgstr "Non é posíbel executar a orde «dot» %r (necesario para a saída de graphviz), comprobe o axuste de graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2656,9 +2710,9 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "" +msgstr "«dot» saíu cun erro:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2666,37 +2720,37 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "" +msgstr "«dot» non produciu un ficheiro de saída:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" -msgstr "" +msgstr "«graphviz_output_format» debe ser un de «png», «svg», mais é %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "código de «dot» %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" -msgstr "" +msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" "\n" "Traceback: %s" -msgstr "" +msgstr "Non é posíbel executar a orde de conversión de imaxe %r. «sphinx.ext.imgconverter» precisa, de xeito predeterminado, de «ImageMagick». Asegúrese de que estea instalado ou defina a opción «image_converter» nunha orde personalizada de conversión.\n\nRastrexo: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2704,314 +2758,319 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "" +msgstr "«convert» saíu cun erro:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" -msgstr "" +msgstr "non é posíbel executar a orde de conversión %r, comprobe o axuste «image_converter»" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "" +msgstr "Non é posíbel executar a orde «LaTeX» %r (necesario para a representación matemática), comprobe o axuste «imgmath_latex»" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "" +msgstr "Non é posíbel executar a orde «%s» %r (necesario para a representación matemática), comprobe o axuste «imgmath_%s»" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" -msgstr "" +msgstr "amosar látex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" -msgstr "" +msgstr "látex en liña %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" -msgstr "" +msgstr "Ligazón a esta ecuación" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" +msgstr "o inventario de «intersphinx» moveuse: %s-> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." -msgstr "" +msgstr "cargando o inventario «intersphinx» dende %s…" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" -msgstr "" +msgstr "atopáronse algúns incidentes algúns dos inventarios, mais tiñan alternativas funcionais:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" -msgstr "" +msgstr "non foi posíbel acadar ningún dos inventarios cos seguintes incidentes:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(en %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" +msgstr "(en %s)" + +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "" +msgstr "obxectivo de referencia externo %s:%s non atopado: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" +msgstr "o identificador «intersphinx» %r non é unha cadea. É ignorado." -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" +msgstr "Produciuse un fallo ao ler «intersphinx_mapping[%s]», é ignorado: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" -msgstr "" +msgstr "[fontes]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" -msgstr "" +msgstr "Tarefa pendente" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "Atopouse a entrada de tarefa pendente: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" -msgstr "" +msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "" +msgstr "(O <> está situado en %s, liña %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" -msgstr "" +msgstr "entrada orixinal" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " -msgstr "" +msgstr "destacando o código do módulo..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" -msgstr "" +msgstr "[documentos]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" -msgstr "" +msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" -msgstr "" +msgstr "

Código fonte para %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" -msgstr "" +msgstr "Vista xeral: código do módulo" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" -msgstr "" +msgstr "

Todos os módulos para os que está dispoñíbel o código

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" -msgstr "" +msgstr "valor incorrecto para a opción «member-order»: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "" +msgstr "valor incorrecto para a opción «class-doc-from option»: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "" +msgstr "sinatura non válida para «auto%s» (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "produciuse un erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: non foi posíbel determinar %s.%s (%r) para documentarse, presentouse a seguinte excepción:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " "\"module\" or \"currentmodule\" directive in the document, or giving an " "explicit module name)" -msgstr "" +msgstr "descoñecesei que módulo importar para a documentación automática de %r (probae a poñer unha directiva «module» ou «currentmodule» no documento, ou indicar un nome explícito de módulo)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" -msgstr "" +msgstr "Detectouse un obxecto simulado: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "" +msgstr "produciuse un erro ao formatar a sinatura para %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" -msgstr "" +msgstr "«::» no nome do «automodule» non ten sentido" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" -msgstr "" +msgstr "argumentos de sinatura ou anotación de retorno indicados para o «automodule» %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" -msgstr "" +msgstr "__all__ debería ser unha lista de cadeas, non %r (no módulo %s) -- __all__ é ignorado" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "" +msgstr "falta o atributo mencionado na opción «:members:»: módulo %s, atributo %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" -msgstr "" +msgstr "Produciuse un fallo ao obter unha sinatura de función para: %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" -msgstr "" +msgstr "Produciuse un fallo ao obter unha sinatura do construtor para: %s:%s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" -msgstr "" +msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "falta o atributo %s no obxecto %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" -msgstr "" +msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" -msgstr "" +msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" -msgstr "" +msgstr "Produciuse un fallo ao obter unha sinatura de método para: %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "" +msgstr "Atopáronse __slots__ non válidos en %s. É ignorado." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "" +msgstr "Produciuse un fallo ao analizar un valor de argumento predeterminado para %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "" +msgstr "Produciuse un fallo ao actualizar a sinatura de %r: non se atopou o parámetro: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" -msgstr "" +msgstr "Produciuse un fallo ao analizar «type_comment» para %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." -msgstr "" +msgstr "referencias de «autosummary» excluídas do documento %r. É ignorado." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." -msgstr "" +msgstr "autosummar»: Non se atopou o ficheiro «stub» %r. Comprobe o axuste «autosummary_generate»." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "" +msgstr "Un resumo automático con lendas precisa a opción «:toctree:». É ignorado." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary: produciuse un fallo ao importar %s.\nSuxestións posíbeis\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" -msgstr "" +msgstr "produciuse un fallo ao analizar o nome %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" -msgstr "" +msgstr "produciuse un fallo ao importar o obxecto %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" -msgstr "" +msgstr "autosummary_generate: non se atopou o ficheiro: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3020,17 +3079,17 @@ msgstr "" msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autosummary: non foi posíbel determinar se %r foi documentado, produciuse a seguinte excepción:\n%s" #: sphinx/ext/autosummary/generate.py:470 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "" +msgstr "[autosummary] xerando «autosummary» para: %s" #: sphinx/ext/autosummary/generate.py:474 #, python-format msgid "[autosummary] writing to %s" -msgstr "" +msgstr "[autosummary] está escribindo en %s" #: sphinx/ext/autosummary/generate.py:517 #, python-format @@ -3038,7 +3097,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] produciuse un fallo ao importar %s.\nSuxestións posíbeis\n%s" #: sphinx/ext/autosummary/generate.py:690 msgid "" @@ -3053,548 +3112,546 @@ msgid "" "``sphinx.ext.autosummary`` Python module and can be read using::\n" "\n" " pydoc sphinx.ext.autosummary\n" -msgstr "" +msgstr "\nXera ReStructuredText usando directivas de resumo automático «autosummary».\n\nsphinx-autogen é unha interface para sphinx.ext.autosummary.generate.\nXera os ficheiros reStructuredText a partir das directivas de resumo automático «autosummary» contidas nos ficheiros de entrada indicados.\n\nO formato da directiva de resumo automático «autosummary» está documentado\nno módulo de Python ``sphinx.ext.autosummary`` e pódese ler usando::\n\n pydoc sphinx.ext.autosummary\n\n" #: sphinx/ext/autosummary/generate.py:707 msgid "source files to generate rST files for" -msgstr "" +msgstr "ficheiros fonte para xerar ficheiros rST para" #: sphinx/ext/autosummary/generate.py:711 msgid "directory to place all output in" -msgstr "" +msgstr "directorio onde colocar toda a saída" #: sphinx/ext/autosummary/generate.py:714 #, python-format msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgstr "sufixo predeterminado para ficheiros (predeterminado: %(default)s)" #: sphinx/ext/autosummary/generate.py:718 #, python-format msgid "custom template directory (default: %(default)s)" -msgstr "" +msgstr "directorio de modelos personalizados (predeterminado: %(default)s)" #: sphinx/ext/autosummary/generate.py:722 #, python-format msgid "document imported members (default: %(default)s)" -msgstr "" +msgstr "membros importados do documento (predeterminado: %(default)s)" #: sphinx/ext/autosummary/generate.py:726 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "documentar exactamente os membros no atributo __all__ do módulo. (predeterminado: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" -msgstr "" +msgstr "Argumentos de palabras clave" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" -msgstr "" +msgstr "Exemplo" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" -msgstr "" +msgstr "Exemplos" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" -msgstr "" +msgstr "Notas" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" -msgstr "" +msgstr "Outros parámetros" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" -msgstr "" +msgstr "Recibe" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" -msgstr "" +msgstr "Referencias" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" -msgstr "" +msgstr "Advirte" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" -msgstr "" +msgstr "Rendementos" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "" +msgstr "conxunto de valores non válidos (falta a chave de peche): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "" +msgstr "conxunto de valores non válidos (falta a chave de apertura): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" -msgstr "" +msgstr "literal de cadea mal construído (falta a comiña de peche): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" -msgstr "" +msgstr "literal de cadea mal construído (falta a comiña de apertura): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" -msgstr "" +msgstr "Atención" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" -msgstr "" +msgstr "Precaución" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" -msgstr "" +msgstr "Perigo" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" -msgstr "" +msgstr "Erro" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" -msgstr "" +msgstr "Suxestión" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" -msgstr "" +msgstr "Importante" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" -msgstr "" +msgstr "Nota" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" -msgstr "" +msgstr "Ver tamén" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" -msgstr "" +msgstr "Truco" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" -msgstr "" +msgstr "Advertencia" #: sphinx/templates/latex/longtable.tex_t:52 #: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" -msgstr "" +msgstr "continúa da páxina anterior" #: sphinx/templates/latex/longtable.tex_t:63 #: sphinx/templates/latex/sphinxmessages.sty_t:9 msgid "continues on next page" -msgstr "" +msgstr "continúa na páxina seguinte" #: sphinx/templates/latex/sphinxmessages.sty_t:10 msgid "Non-alphabetical" -msgstr "" +msgstr "Non alfabético" #: sphinx/templates/latex/sphinxmessages.sty_t:12 msgid "Numbers" -msgstr "" +msgstr "Números" #: sphinx/templates/latex/sphinxmessages.sty_t:13 msgid "page" -msgstr "" +msgstr "páxina" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Índice" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" -msgstr "" +msgstr "Busca" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/searchbox.html:16 #: sphinx/themes/basic/searchfield.html:18 msgid "Go" -msgstr "" +msgstr "Ir" #: sphinx/themes/agogo/layout.html:90 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" -msgstr "" +msgstr "Amosar o código fonte" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" -msgstr "" +msgstr "Vista xeral" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "Dámoslle a benvida! Isto é" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "" +msgstr "a documentación para" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "última actualización" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "" +msgstr "Índices e táboas:" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "" +msgstr "Índice completo" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "" +msgstr "lista todas as seccións e subseccións" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "" +msgstr "buscar esta documentación" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" -msgstr "" +msgstr "Índice global de módulos" #: sphinx/themes/basic/defindex.html:29 msgid "quick access to all modules" -msgstr "" +msgstr "acceso rápido a todos os módulos" #: sphinx/themes/basic/defindex.html:31 msgid "all functions, classes, terms" -msgstr "" +msgstr "todas as funcións, clases, termos" #: sphinx/themes/basic/genindex-single.html:33 #, python-format msgid "Index – %(key)s" -msgstr "" +msgstr "Índice – %(key)s" #: sphinx/themes/basic/genindex-single.html:61 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 msgid "Full index on one page" -msgstr "" +msgstr "Índice completo nunha páxina" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "" +msgstr "Índice de páxinas por letra" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" -msgstr "" +msgstr "pode ser enorme" #: sphinx/themes/basic/layout.html:26 msgid "Navigation" -msgstr "" +msgstr "Navegación" #: sphinx/themes/basic/layout.html:126 #, python-format msgid "Search within %(docstitle)s" -msgstr "" +msgstr "Buscar dentro do/a %(docstitle)s" #: sphinx/themes/basic/layout.html:135 msgid "About these documents" -msgstr "" +msgstr "Sobre estes documentos" #: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 #: sphinx/themes/basic/layout.html:190 msgid "Copyright" -msgstr "" +msgstr "Dereitos de autoría" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "" +msgstr "© %(copyright_prefix)s %(copyright)s." #: sphinx/themes/basic/layout.html:212 #, python-format msgid "Last updated on %(last_updated)s." -msgstr "" +msgstr "Última actualización o %(last_updated)s." #: sphinx/themes/basic/layout.html:215 #, python-format msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr "Creado usando Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format msgid "Search %(docstitle)s" -msgstr "" +msgstr "Buscar %(docstitle)s" #: sphinx/themes/basic/relations.html:12 msgid "Previous topic" -msgstr "" +msgstr "Tema anterior" #: sphinx/themes/basic/relations.html:14 msgid "previous chapter" -msgstr "" +msgstr "capítulo anterior" #: sphinx/themes/basic/relations.html:19 msgid "Next topic" -msgstr "" +msgstr "Seguinte tema" #: sphinx/themes/basic/relations.html:21 msgid "next chapter" -msgstr "" +msgstr "seguinte capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" +msgstr "Active JavaScript para activar a función\n de busca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." -msgstr "" +msgstr "Ao buscar varias palabras só se amosan as coincidencias que\n conteñan todas as palabras." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" -msgstr "" - -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" +msgstr "buscar" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" -msgstr "" +msgstr "Busca rápida" #: sphinx/themes/basic/sourcelink.html:12 msgid "This Page" -msgstr "" +msgstr "Esta páxina" #: sphinx/themes/basic/changes/frameset.html:5 #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "" +msgstr "Cambios na versión %(version)s — %(docstitle)s" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "" +msgstr "%(filename)s — %(docstitle)s" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format msgid "Automatically generated list of changes in version %(version)s" -msgstr "" +msgstr "Lista xerada automaticamente de cambios na versión %(version)s" #: sphinx/themes/basic/changes/versionchanges.html:18 msgid "Library changes" -msgstr "" +msgstr "Cambios na biblioteca" #: sphinx/themes/basic/changes/versionchanges.html:23 msgid "C API changes" -msgstr "" +msgstr "Cambios na API C" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" -msgstr "" +msgstr "Outros cambios" + +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Resultados da busca" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "A súa busca non coincide con ningún documento. Asegúrese de que todas as palabras estean escritas correctamente e de que seleccionou categorías abondo." #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "Busca finalizada, atoparonse ${resultCount} páxinas coincidentes coa consulta de busca." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" -msgstr "" +msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." -msgstr "" +msgstr "Preparando a busca…" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " -msgstr "" +msgstr ", en " #: sphinx/themes/basic/static/sphinx_highlight.js:112 msgid "Hide Search Matches" -msgstr "" +msgstr "Agochar as coincidencias da busca" #: sphinx/themes/classic/layout.html:20 #: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" -msgstr "" +msgstr "Contraer a barra lateral" #: sphinx/themes/classic/static/sidebar.js_t:48 msgid "Expand sidebar" -msgstr "" +msgstr "Expandir a barra lateral" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "" +msgstr "Contidos" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" -msgstr "" +msgstr "non foi posíbel calcular o progreso da tradución!" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" -msgstr "" +msgstr "non hai ningún elemento traducidos!" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" -msgstr "" +msgstr "atopouse un índice baseado en 4 columnas. Pode ser un erro das extensións que usa: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "A nota a rodapé [%s] non está referenciada." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "A nota a rodapé [#] non está referenciada." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "referencias de notas a rodapé inconsistentes na mensaxe traducida. orixinal: {0}, traducida: {1}" #: sphinx/transforms/i18n.py:245 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" -msgstr "" +msgstr "referencias inconsistentes na mensaxe traducida. orixinal: {0}, traducida: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "referencias de citas inconsistentes na mensaxe traducida. orixinal: {0}, traducida: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "referencias de termos inconsistentes na mensaxe traducida. orixinal: {0}, traducida: {1}" #: sphinx/transforms/post_transforms/__init__.py:116 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "Non foi posíbel determinar o texto alternativo para a referencia cruzada. Pode ser un fallo." #: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" -msgstr "" +msgstr "atopouse máis dun obxectivo para «calquera» referencia cruzada %r: podería ser %s" #: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "" +msgstr "%s:%s non se atopa o destino da referencia: %s" #: sphinx/transforms/post_transforms/__init__.py:212 #, python-format msgid "%r reference target not found: %s" -msgstr "" +msgstr "%r non se atopa o destino da referencia: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "" +msgstr "Non foi posíbel recuperar a imaxe remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "" +msgstr "Non foi posíbel recuperar a imaxe remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." -msgstr "" +msgstr "Formato de imaxe descoñecido: %s…" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" +msgstr "caracteres fonte non codificábeis, substituíndo por «?»: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" -msgstr "" +msgstr "omitido" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" -msgstr "" +msgstr "produciuse un fallo" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "Problema no dominio %s: suponse que o campo usa o rol «%s», mais ese rol non está no dominio." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "" +msgstr "directiva ou nome de rol descoñecido: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" -msgstr "" +msgstr "tipo de nodo descoñecido: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "produciuse un erro de lectura: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "produciuse un erro de escritura: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" -msgstr "" +msgstr "«local_dir» %s non existe" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "" +msgstr "Formato de data non válido. Acoute a cadea entre comiñas simples se quere xerala directamente: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -msgstr "" +msgstr "%r é obsoleto para as entradas do índice (dende a entrada %r). No seu canto empregue «pair: %s»." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "" +msgstr "A arbore de índice –toctree– contén unha referencia a un ficheiro inexistente %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" -msgstr "" +msgstr "produciuse unha excepción mentres se avalía só a expresión directiva: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" -msgstr "" +msgstr "non se atopou o rol predeterminado %s" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" @@ -3603,61 +3660,61 @@ msgstr "Ligazón a esta definición" #: sphinx/writers/html5.py:397 #, python-format msgid "numfig_format is not defined for %s" -msgstr "" +msgstr "numfig_format non está definido por %s" #: sphinx/writers/html5.py:407 #, python-format msgid "Any IDs not assigned for %s node" -msgstr "" +msgstr "Calquera ID non asignado ao nodo %s" #: sphinx/writers/html5.py:462 msgid "Link to this term" msgstr "Ligazón a este termo" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "Ligazón a este título" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "Ligazón a esta táboa" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "Ligazón a este código" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "Ligazón a esta imaxe" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" -msgstr "Ligazón a esta árbore de índice" +msgstr "Ligazón a esta árbore de índice –toctree–" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "" +msgstr "Non foi posíbel obter o tamaño da imaxe. A opción «:scale:» é ignorada." #: sphinx/writers/latex.py:335 #, python-format msgid "unknown %r toplevel_sectioning for class %r" -msgstr "" +msgstr "«toplevel_sectioning» %r descoñecido para a clase %r" #: sphinx/writers/latex.py:386 msgid "too large :maxdepth:, ignored." -msgstr "" +msgstr "«:maxdepth:» é demasiado grande, é ignorado." #: sphinx/writers/latex.py:625 msgid "document title is not a single Text node" -msgstr "" +msgstr "o título do documento non é un único nodo de tipo «Text»" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" -msgstr "" +msgstr "o nodo do título non foi atopado na sección, tema, táboa, admonición ou barra lateral" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas a rodapé" @@ -3669,27 +3726,27 @@ msgstr "indícanse tanto a opción «tabularcolumns» como «:widths:». Ignoras #: sphinx/writers/latex.py:1388 #, python-format msgid "dimension unit %s is invalid. Ignored." -msgstr "a unidade de dimensión %s non é válida. Ignorado." +msgstr "a unidade de dimensión %s non é válida. É ignorada." #: sphinx/writers/latex.py:1722 #, python-format msgid "unknown index entry type %s found" msgstr "atopouse o tipo descoñecido de entrada de índice %s" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[imaxe: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[imaxe]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." -msgstr "a lenda non se atopa nunha figura." +msgstr "a lenda non está nunha figura." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" -msgstr "tipo de nodo non implementado: %r" +msgstr "tipo de nodo sen implementar: %r" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.js b/sphinx/locale/he/LC_MESSAGES/sphinx.js index cd02a752fb9..5b915b01468 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.js @@ -56,5 +56,5 @@ Documentation.addTranslations({ "search this documentation": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d6\u05d4", "the documentation for": "" }, - "plural_expr": "(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3" + "plural_expr": "(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2" }); \ No newline at end of file diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index cb6c4a9176bb6dbdaf6087b802778e37b084afe1..bb54fbd37975b3426a59fbfb7c19ee32f497a5e9 100644 GIT binary patch delta 1374 zcmYMzOGs2v9LMqhIOB7CWm@Jt98-xICLJ|GBrJP?QxOeO^q>rsL|n9pl9~)#1d)Lj zq-`V@EewiT6hsjf1W^`2I*>$xn?f?EgcecXUmQrT_jAsjbN`PsXJ%@?2jU+Jd{>RX zUHq5ve9Bf4h!)Y7Go~i7+NiAUD(--O3;cbU=ym-ZKy_KsP~Sc8tFqdb{6&C zSSI_wiot|?@BmfN6V!{-xa2XLMJ}7>Lj_7=D}KgWTtikBx&!sqb)(jw#3&9Tm%Zku zb#qvNKeO3?9i9xn$O^1PC2m6%w$;s#;9BO#QD@;A>b(hEiTAMv-(Vdsp?0K_ZK%Qk zs^bn+{7zIsu{Z+-K8hi{j0*S=mEaxfR4i)yZJ3Q zPdFdD=dZ9uzyBly9lCtVRDd9Az8=+43{_Ass=%1rn)^ z5@lhMM7GGv9xfE3uuWkE(X=R6E`o#vgC2zR{n>>Yj`wrUz32YV|9|drZuR@3@KkDS zui>|kzdZg1V>J5r+Yo0A&3L$^p&z|ii@A6jGq48}@h&dLM_7g9n1H`g^J3$TNyZ#Z zF(zz^>Ev)@GwQ|ts6a=MW}3NZp&$~&bl_6#Le1;POdLWb_zYFUJ9`|(SjJya^Jh_U zeqjddFQiuhnWVV{E6{~I?ePIjV%&(!u+<)iQGq*96?LKtxM4rPjWvuPpc4Luitk_& zU6X?GT0e_UI<7<~mZ4s#MpeES*(!4!Y32+U%{zyxs2d&Fhf1j5zCVas=pIt6d18;p zk!B{ig!Ac4(ow(})Ykk!orQT+V!5o6g}i} zNGGbWn~ChdUL4~_HoicOKcNzuM!h(TtN5rtk!JFUu0U?wisiTlPofgNj{1a;QS&FT z4&NZnIb?_&vmLZLYb#nhc8iwIGycNys(>&5(uCI*P;T~BXdnNDquV6taPJxY#8;4o}=bXBAZ~Q zP!-Og;?1Gr&)Z`st81M3*RUz1qlsQD$1SMC7qahn+2cM`MWd*MCQ+4rMg{ziiW5tA z(uGPS2bEX>YDYKP&uh_T{8UOuTi<9uxP&?!S5b%OA!?y9`}wPp?6_Squ6C;>Xq{?m z3$>gGT1BCe!wGL=lKmcUg~wNJ`N{&DDk6cT4~xnoY0er?F;gs`*Q%_vyq4Q-Ee!t~ xRq=4GwaqHE0+v70;0!rROMD}*oz;%CE73@F$clDHFGuf02ckV%E6LU3_yb3xl5GG0 diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index fe079479ef5..5bb04fc88b3 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,16 +8,16 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2011\n" "Language-Team: Hebrew (http://app.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: he\n" -"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" +"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n" #: sphinx/application.py:157 #, python-format @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:331 sphinx/theming.py:377 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "רמת המודול" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(בתוך" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "אינדקס" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "הבא" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "הקודם" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "אינדקס" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "מהדורה" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "מחבר הקטע:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "מחבר המודול:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "מחבר הקוד:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "מחבר:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" +msgstr "השתנה בגרסה %s" + +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" +msgstr " לא מומלץ לשימוש מגרסה %s" + +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "פרמטרים" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "משתנה" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "פונקציה" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" +msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "מאקרו" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" +msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "פונקציה" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "מחלקה" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" -msgstr "חדש בגרסה %s" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "השתנה בגרסה %s" +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "מודול" -#: sphinx/domains/changeset.py:25 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "Deprecated since version %s" -msgstr " לא מומלץ לשימוש מגרסה %s" +msgid "duplicate %s description of %s, other %s in %s" +msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/math.py:63 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:213 #, python-format -msgid "%s (C++ %s)" +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "מחלקה" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "פרמטרים" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "משתנה" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "מאקרו" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" -msgstr "מודול" +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "משתנים" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "משתנים" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "משתנה סביבה; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "משתנה סביבה" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "מודול אינדקס" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "דף חיפוש" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[מקור]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "לעשות" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "הטקסט המקורי" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[תיעוד]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

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

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "תשומת לב" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "זהירות" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "סכנה" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "שגיאה" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "רמז" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "חשוב" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "הערה" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "ראה גם" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "טיפ" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "אזהרה" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "חיפוש" @@ -3342,34 +3401,22 @@ msgstr "נושא הבא" msgid "next chapter" msgstr "פרק הבא" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n החיפוש." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "חיפוש" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "תוצאות החיפוש" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "חיפוש מהיר" @@ -3406,20 +3453,30 @@ msgstr "" msgid "Other changes" msgstr "שינויים אחרים" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "תוצאות החיפוש" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "הרחב סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "הערות שוליים" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[תמונה]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 3a2983a09a54120c2a1a65d5a225cbadb0aaa43d..4533fd50a9981b1f2b089d401f05f9c2667560bc 100644 GIT binary patch delta 10013 zcmYM(33yG{`p5CLNeE&{A~9qTQ-nw)5+PIu^H7QqGpQh@#?Tm>qb*v~RgMx`v{f~f z7NKaXXlv?ZXw5@wY^#QrD^*wZ|NWhHp67p`d+%qx>zuRqTJL(-+ULaX2foD@eO;FV zecmwqXHW@a!q7iR(f|MFab06(JI4Hjx9Of)&zQEvdC~ljcvpR6Mqx|?W6EP8`r`Y@ zf6XTTuO*(wrWhP!Ob6_OX~wwBQW~}BIE7{KZ}h{G4UOTR#ve7X##jTNLET_1YOF6{ z0M5a3_@=ji9flBpik0vLR=}$miT5yo`-7n?CytLd zCJ-kh|26aYKi%Ln9D-*s7+dh+WbBTS_!?@08@v{ws{$Q+Xej01Vk(~WzM*nsV_0Sr z;k7+R5RXIF&MZWI?kJYWGguREU^Dbfv`d(QnpiGsU}G@}XC;#VNE)Bep$nYHO86UA z$496&59ZyvQ4`b*Qc<p+Jb zirF{=E8=C0!aq?^PH2P!kCFa&=_W%Mu9jeS#$DS_3nHHM-3 zUD-5zXiUUJ$CxQdVVcd{MHjq)if^DY5ZuD9VW`&xR7TpPE;t`=;@hZQFz+ebUx@vQ zH=&lwk3#`nCW?kq(FXfs7HXzjP)l$EsV8#N@)D0h?Cgj)7)>=cL)~Z*9>GGKi$ln(-hUf)gX-Pw`;xI7aZA(WXja%gBRN26}+#)`Pr>weVCj$;&FMAeK>FV1tUkNR9|)WDua)x>nn zz_(DfbO|-llq~xg&qbHMTFs_W8P}kSVi)qr8W>^iC+9=da;xHM9V+&k~ zDzdZQxON}=uo{dMzFC3F;8j#+!uyhcrD_;^Ocr7V{05Wo9EM;;hOdD}q2ku4_xHnU zxWN1RI#edU!m4-$Bk+G1gw@$1ff$EXFrz>DkEYR=j+Xc`YOVL7mf$$X<7HHp2M(|| ztb&b*6RiAQC;yNia_WH@R>OHec1gbDa1>cS5& z7$XPSDo#cXEDd$TaTtKhP!rmKn!pJR!z*6@Mb%o^V0+HETG4oij`gUNcgnUib)haW z6Ilhb1Y6)8jKc=c+SK+%rFt?d6N@kgH=zb{26bI$h<$%DYAJeQsP_K|8q|ZCg&b<; z5-Qd8bL>dtuq<&;RLTaUZa5KjqXnoM*o`&t2UP0sV>A2*yI}HAeken@V;Jgxcyvr)RK%sE#XR3m2XEKIFHc}JLlTW z_QW{uZ-&xPRl2b}zVCHAwj}-nwT9+7dv=GTZqyc|F&|Yct5FBgajc0?Py>z}VNc35 z)CBvZuA7f8rEoh9UGQhj!hn(1=TNEJi#@RX^Y-A$MqlDtsI{Djn&E2Hb?#t&tTDTeRVift;+I>xjMtTjEx{{-9RaZyNB*Po$U|Zt3=#R&+0bazW=r_hb zY|=5BI0q>*Gaog8_1^d()*`+#hWu+LzGLm0mqQgon8{Uq%gVt+)RW z)+YWQOXEFkgO9KYrj4^T^aA=2&p=IJmWzgFv>03A8ElWC<8AflpfWTEb%Qlt4`D;% z-%&HHnrCmAgk_1Rpx!?dm5KG<_&8P|e&FqQ`Ao3eDHb)dcBpOB86$BfYQ}3(#d8?7 z{jQ=i^%#RNV4|(=x>$)g4(nnXmd9bJ8&5zD{ADBqF7pu$jqo#6Ca$B_G=|NZfLW-u zeGN6!eW)2;z(D*3gYgk+AeHiMTn8%>H%Gm%6Gq`c)b^f9juI}P$T~x zwe|s%C?u?kT8inY{-szBS7JTffX(qZMxy^@W707eRTE=S)t`?VkQ+VU|KF#f8Gok^ ze2BfV#uWQ4b`mxv{uq_YJ6HxEqf%LFs{MQ-#uE=hRr^BJL^k6x{K4z<(`;r-PAC6L zaT6L!VJ;597g4D`hcQ@;JU2|O7wu#BC2T^x9kp$5Vl^yNU~8y0>h);Ubq1j?PDNdB z2FBv10`l*<5gpo2#a^qjEE-UARDU-N!94WCIjHJh?2SK0rF1Vw;0a8@Kd}YI%&-Si zE@~+jq29lI25+cJV-p?n0P4n)AMQa7xZn+2q%D`)XTx;VQoVyJ&Rv*_*D(m|P>C8~GipG{)~9q(aV zQdyypZ^FbqSJ>2lfjT%&A_s=Kh6VVi*Ku$18u4AMj|bl3x4mLi4Gdn%sfx=n9rIRk z_+Sx^*ZxmlZHr<(YVEh64y1#q?RFQnME_tVobt9YJmAb+%*JAT27AB5uOD28bujB) zyIZDV7vc|*JF>wP+;82{X6ffIo zXS5&nxr!ff8e$m!fJI1om{&L1Kh=b7wo93fVf0Tx=44*qO#Z`ZG$C)AVJ1f50@MY! z<9O`+k^Q#12m27$-eNB}9s3b4MC#Do^u{x`+L@lmX!@VpX3Wz#44dONOvT&V$iHUL zu*g<*3MLXi!ipHTomrRQ&8QR}`q-}Ru$}yBBA$yiF<_THQWLQ&@i27bc1*?&yO|u< zabYC!51-mh{?|pL8L5r<%#O789{Vtwfm)g!Xn6fLwxN0Fb35|Hy_|l;d8mQ3O8eQKK}>SCNB5A9Y`Z=tNq`D zMnhgGL{;|zjKjOAVu?6vp8n^{z1i0pSK50A@(G`fse7p1r8T%Mq$jt zTd1nfyJTx3{3p^+d=ry!?9a@e8@-3^i9ft-uV0M4h+ADD|DV$+yuxpI?0wbl*WFk^ z{0FLv$6m8f!(Wju9%p|N@Dc-bHJaa!U}`xnhTjG_Na)ULUUXEE%aU8-WN zNZk3p-ERF+OXBkCL)yM2o`bct|Fg*7Xga1~GX8=pwuoYTAT`6j#2;WZ`u=5&!$jiV z_#d2yTB_;~?VnuTIDy#bZ+rd8*pv7Mp2QZ9n1I9j2mFt{N=GUcmW7wRHu=Z?AeoOE zzzIBz4WHOGet^}8OZ;n>Bn)39PQ;gRE6!HT`MnxHLB;(X$5XtQaixon+!Br_MZP5+ z^A_=3T!8g_9M1)JU;=TXuj8qSVc3=UE-C}5r5w-q{yZE<TIqDv#4$R5eYV$@RfF6($wc>os?r+vNb7?cZiHj{U-d%HV5QA47s1&qa8Q{4 zpi;jTcjFnHfs1484T2gvo_})5#~k_(VGoRnwKFcjmxv!@dn|}kk+S~|($JcfYh>5D zH@b=cLM_3(c*m^5)C9+TfEQ6G+MLFYDZ~o=vuQrA!+%A#R!tVPaIEen!=+eU?`6t#qe*PVG#xF^= z?|Tos5bwmc=$mHyJ7X{6LEd;ft|dN%s{YaG?Ef$t57X@hgEJh@m(9AUGrcWt!5>i{ zoYl(i+nCml=dt=K4yXS*PRFO)*a05Fj>LIwZLxiZ^@u08b38xY-bO9Ce|wkRE`8cN zo~PPA9L5W`P$Tcr!47OaDl@yh*6-+e{#d;NThf0W)3A0Y$Mb_E2i5;MM&M&q5r=lR zOP7j`iI=))=)^mMs`|fCCzktZM}O`$dvFCtb+PWp8N>s+I-ajs7g76s8f;TNH`~sn?z4_LMSmJ9Qz1j_<8%O)V?b9?+xBjbo$;ihwirtfvqd%& zmC<831+RMh2M(vUwEs8ID8SvQhe@+syHAU73~}^xw(6ImGISsH)QlZrXSf2j*7qv9MA56STyV-K#l|PaCL~2RPHf(|Y08ey9 zR-->IL_ShWu`lk%UU(HVF(F>5bfuhXCKnwkcnKTfr`QnBVKn}L(y^8aN_D_)C=Fzx z^mQz@Ksz?U*}n2c7)tyY2H{R@hDXrE_pt@-tDm@#2mKRu2U?)q&<4lgt(bu;P%3=i z=XWR-t8Pk#K?`h+vDg#`pmZ<`+h9I+LMQG;5B8vaH91LlU=;=sKY=pBP1qf``1}%w z5C>7%62~J&YC1{->v1aX!4PbdtW*kiM-z)sGQ7m63!TjnNj7+z> z;j>E*rP>pZLgr4Dp**(@191;V;_H}--=a)mWKTV?At)WoLjF;vjNjv2lwB~L z%`fHEI1!hkOx3qqr)t28lT>uV37CSih*qFX!A@lTslzC9b`@m=vH~RogRm3}a4>#= z(r|cx{d{MX?VWbjBj_PU6le znVE+&Rf{klmt!k@1?9Q-P^RQ8%G$V$A+)cqaUmUOK0q(F2;?7?!N2TyKS~BJ;!uoa z_-qI@9XsHYJ`Z9TvDfEsSVJ7dij^sN5M}W_fii_#(J4JU!iA*fLzI-C!IpT%7yFUd zDB@Pw2~$xjybI;I87SN8K9u?%KpD_ll#D!uG6m21;$0{me|0eVmxjKeKq|P5lCob> z9%y=-?s02uL)-;rl@CN|U<68o<55y-M_K(9*cF$c)Uyj&HtG;cdvc7*fP#mRf0^@M z6i82pqI6(1N`-|epO>MGcpl0kU4t_BmoN^8WwLv)3OUx*a~Ol4qU@e}%-bmJj^#KX zB?CV>xrpQq2aR>+u*qjSphUXnp^0 zC=Ens>-#dW32`P${W-pPk}od8hO+<5xnMA=1|PyVFa<>b1GEist< z2VrOAG*!JY0%xFPY$-OywI~C68l|2SI2G%UWgXJKD&(RSzJQYQBN&2zpj6c24n4PR zFqb$3r6U`$Js!m7c-rSBl#$=W&e(+ck~Ni#;W!TE`5EYx9xvxY7R~dRfp4KKwx;8C z2Bx7jv_o5#WPTzTa4kj58L9&N#tKr z@goJTG3YKm(pU^8&P18(Nf?G@DEoR5_QmZeYv3Zv6x_rlY(81HrsADL94Fkp`SHQgJtw2MSQ8Vga^6H?rPT9danDru51W z$Dwp|5;n&9C>dLZ(%?pvcJ`r6$v4A*3R0epzE$ba&E-nU3U=fou1SL?WtIeZ(3;8~OdDbB9vt_CHw z^Dz-up)ATn7>FPGJd1saFQcsP#Jly;J{)E49T+Z0%l{M5`FMIjQ+%RC{wu?Wq|LNkbkMDZ7F{? z;RuwIZx*)0Whf)rjIw>+M47waP*U5nOlPh;b|%h58AzEgUWtQ=_h3`JfpOTRTpvg& z<>bF31*H^7YF46*{AH95eB_INM!7F&h8{@|lsWH>vdBiGtoA~bwXxCXb12VkN9ouH zzVfRWMSR`KMF1COh5i~HgSQZuU}Jn5Wp%%RGJ-nnjt5aj_9G6!REJ(WvoV_Z2uh~D zLusgfrM3&k6AwojsI!`j1TI#iWZ*Ck!t*E{NMZ{}1$|IHpW=%bV>99{zVdx2+w3cp z4*!X=o9fNf2Us5*MLY>5BU{nh|0lSR2hU>``pwcQ&B0(|J2u2Q7=#N^M(D;sd=;f5 zZ=;Ot6iTK7s&$83p=7Er%G@tN$>0mvOZLB)3rR)m8a?8k*pfIMLogeqBSpUWUTjXh z3gy0yD2s0whT-QZ8Tc7{;x%lAiTCJ^4@6lbcFdRkU(Q81e(3w)A~qquie1o{t>22V zXc8A-e|!LC?Yxe%OOB&-=sZe?ZlH`f`d%H6!g0j2upj;loxQkdHb1<}N%#`B!*5Wg!2dp`0lWG; zpF6cmuc04NQhx*I;Y1hr;1{?bofB5GCAet4M(@k@C~M#V$|^sGIru52Vd7f7`0VIU z{5;Ac-Hy`XPf!-`WlX{AC~K?-3q>+D9V75TOs9QS%Z03guQ3dpJfe-lY~nt65FbYA zan_@H^)_3lUoImsl=2FcMY{z1;Y%pn_9{vT8$G6fH|UOb;wl_mkNH2%MF|DbPw3RU zP!5z$Cc;zV1_nH>*F+6k zfB(Rpt% z&wEC%wR0$o`5HRMaM9^m{XVY7DB?FzMsgmzVf1tQJwFy@sxW>Q%1B3WlFrr zx>6VL1H6A5FEAXxUC;3aY)RaGhu&3#kffvyA*$`@$(FOC=E`<4)_pO$o}8V#e53dzoAq76vh$1h;rj;T#h$!I4*xv z@AJI)c5r68uPyH$SfR8 z`)VB*@#w`^4E#WU&+mn@cnW>-Q z5%0yvh(AX;U#dSL|5Lfx$$2R~3;9%^c1%n+z9V z9nL+&R>PiW^)7fBWlh-5aTsCpS9(|N#zr*s0}i45m#=mG{r=5=xFUYg$;EyyyqJd@ zzR~;F_*VBg6=fCg#xP9!j_&}Ni9cif_bf1sJg>iGhW((YBp!n)?~Qli2u#4un2w)f zA9RLa&~Ll37(zh-%2eEgOVERnn0Qgo{U{72uEt}GY&qVE6E5rj4*22~{)-u(NB*e4 zu?9ong|>L>Ox@o9#6H|}ScWf=R5{zKwX>`MGS z#$)KOj0y*$Oj*0%^g&gDQN;66re>4RuGd&=hLdkDT)e{vhkni`_hTsW zCpZT$;XEt}FqCtl6mTI8%xq{_FPTu5tgP+oP{Tvk$<_!B%jiegD9yS5@c9M?LL&ACbckB zF78ChRB%hfO65FUN&GuT#eY#Sx)a;yTtwO*=hxtvVRiN%wK9UX;=r|LCmGx*|eihc?rtgobj0*WmrG2A3-S}*@?x72T&H> z54aPPqjiVA#zw^Nb~e;N{1}6=O&7y@8+OA4;yY0Wx){07sV;MI8wEXM^jytGSyW4r zQ&TmLHLUM~m(V1>!NDDa9lGjOo{6K0$6|kc23O&?D04rXEtHE(kvF}%fc41So&%>(rOvUgFg_7f1Hc z_5TY;5hwRFR6Z`iY}x`OpwyvE!H`r# zJ%PXDW_+}_-mZhw4D|@{TR0Q*`xq(`PhlUtj!vl{^;W$a&*Oc>HGOp^e#73x>HQ4r zx11VWM7$F_VOqLgyi-sX=Mv1ucW@kb=xzLL3%N+!Is1g2J4eB9ObAkN7>HLpnORkb(_8~7e^2~P!{hY zUwOa~r(wN^BZlZ3%dwUl7T|*zn`u~ItzJZ_@ICB+XK))DLk;U}-+|kS`w!F4U%`pQ z?%{^@`uzzDiAUdVsC#h_N=I*TjxemRUSFcDftZnoD#A@Di?Df?VSVL#8>bWhgt8W< zjMCd^Gj=5o9<4K!j$?^yQ9Aqw%JyxNt-TlJWpn|Dq4VA`hV|R-8<;c1k`)PAC2{bD)Mf$Zp`EH%^>nH-hpsbZ=Fc5pr)N?-o<$Yd_@8PSs7MIV` zbKkjIA6Oeu*3MCs`s>%k=reg@jc#ZQ=JLVEn1-qM=u|oGsrx7n;y|^IJ96GJEtio1c+6&EuJk##@>t0(yU1oNGtw+TS200_n5E7o8@^GRAMVOXW1)@%#mh!MOnVh;o!+xMYal? zSzhLF*ryiT%ouAhdBu9HW=H8@N1iG!HXXJ~o@8|Sv947)ox*JuQds5S z;R0J>UR7~rnpsp?QXE^iJ?C7TBzt8-xjlb+jagDwV2d|r@-|D zjf@r2k5W2Sx3av}m||8I*-C6?X@#WX|KSH`RjJ;(?pq;^jK9|_CN2AXF3_2 zy^ZkO{5Bd|w8 zQffl?US{{6X}6@-ZJ1YT)K5sjoMtZziR8xJs=yGCvF^Ru?gs-yn#jl7=cy|weao@ZTUt}yrI1S7zG zw7C%$@RGN7nb)(A&qSEdJeF2+}$P^9h&U*)-I;lLp!dU z7uz)OY$w{}%D5WrGOkRoGp;;Xzw=73XM@!bI`x9rv)x-emzx&KQ=a(}dk)Z3_ld4X zEBA%TSHkyu*a&2I_Te?Db_$Y>k4!cx4hu3T|~|L$?b_=&vI@9 zIx#oV-L0F^)^+jMKr-RqntL9T3TxNvCfz!XiFJ#Aj;`17ufbZa(9^A6&n}*zUk`zd z+5O~XBf=Qz-Z0!~+rsN{>1O}xfNRCpi0Lw3t2;4Xk1rEulx*QB>eyv5xRVxHDJ$wJ-&NThEeSo z&X%HLs|EVG#=1qX;e@e9l6+liahQaVMYhP)l}np z?CS{k&$lwt&xRU}I+_2-=>Ix}+>Z`5-f2zVYUu|lCAnm99syj;qhH(D183 s*TJ^}dM&X=vQ4&<$E|xQd;FgZ, 2020\n" "Language-Team: Hindi (http://app.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -41,104 +41,104 @@ msgstr "स्रोत निर्देशिका और गंतव्य msgid "Running Sphinx v%s" msgstr "स्फिंक्स %s संस्करण चल रहा है" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "इस परियोजना में स्फिंक्स का कम से कम %s संस्करण चाहिए और इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "%s आयाम को स्थापित करते हुए:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'स्थापना' को जैसा कि अभी कोन्फ़.पाई में परिभाषित किया गया है, पाइथन से निर्देशित नहीं है. कृपया इसकी परिभाषा में परिवर्तन करके इसे निर्देश योग्य कर्म बनाएं. कोन्फ़.पाई को स्फिंक्स के आयाम की तरह व्यवहार के लिए इसकी आवश्कयता है." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "संपन्न" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "असफल: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "सफल हुआ" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s निर्माण, चेतावनी %s (चेतावनी को गलती माने)| " -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "%s निर्मित." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "शब्दकोष विन्यास मान %r की उल्लंघन नहीं किया जा सकता, अनदेखा किया गया (प्रत्येक अवयव का मान रखने के लिए %r का उपयोग करें)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "विन्यास मान %r के लिए अमान्य संख्या %r, अनदेखा किया गया" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "असमर्थित प्रकार के साथ विन्यास मान %r का उल्लंघन नहीं किया जा सकता, अनदेखा किया गया" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "ऐसा कोई विन्यास मान नहीं है: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,291 +235,328 @@ msgid "" "%s" msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "भाग %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "सारणी %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "सूची %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "%r घटना पहले से विद्यमान है" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "अज्ञात घटना नाम: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "आयाम %s की needs_extensions मान में आवश्कता है, पर यह नहीं चढ़ाया गया है." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "इस परियोजना में आयाम %s का कम से कम %s संस्करण चाहिए इसलिए उपलब्ध संस्करण (%s) से बनाना संभव नहीं है." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "पिगमेंटस लेक्सर नाम %r अज्ञात है" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "निर्माण वर्ग %s का कोई \"नाम\" भाव नहीं है" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "निर्माता %r पहले से (%s प्रभाग में) उपलब्ध है" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "निर्माता नाम %s पंजीकृत नहीं है अथवा प्रवेश स्थान पर उपलब्ध नहीं है." -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "निर्माता नाम %s पंजीकृत नहीं है" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "अधिकारक्षेत्र %s पहले से पंजीकृत है" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "अधिकारक्षेत्र %s अभी पंजीकृत नहीं है" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r निर्देश पहले से अधिकार-क्षेत्र %s में पंजीकृत है, " -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r भूमिका पहले से अधिकार-क्षेत्र %s में पंजीकृत है, " -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r अनुक्रमणिका पहले से अधिकार-क्षेत्र %s में पंजीकृत है" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type पहले से पंजीकृत है" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type पहले से पंजीकृत है" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r पहले से पंजीकृत है" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "%r का source_parser पहले से पंजीकृत है" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "%s का स्रोत व्याख्याता पंजीकृत नहीं है" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "%r के लिए अनुवादक पहले से विद्यमान है" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() के kwargs एक (visit, depart) फंक्शन टपल #function tuple# होने चाहिए: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r पहले से पंजीकृत है" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "%r आयाम को %sसंस्करण से स्फिंक्स में सम्मिलित किया जा चुका है; आयाम की उपेक्षा की गयी." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "मौलिक अपवाद:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "%s आयाम का आयात नहीं किया जा सका" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "आयाम %r में कोई सेटअप #setup()# कारक नहीं है; क्या यह वास्तव में स्फिंक्स का परिवर्धक प्रभाग है?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "इस परियोजना में प्रयुक्त %s परिवर्धक को स्फिंक्स का कम से कम %s संस्करण चाहिए; इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "परिवर्धक %r के सेटअप() कर्म से एक असहाय वस्तु वापस मिली है; इसको 'कुछ नहीं' अथवा मेटाडाटा कोश भेजना चाहिए था" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "पाइथन अभिवृद्धि प्रस्ताव; पी.ई.पी. %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "रुपविन्यास %r में कोई \"रूप\" मान नहीं है" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "रुपविन्यास %r में कोई अनुगत मान नहीं है" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "%r नाम से कोई रूप नहीं मिला, %r द्वारा अनुगत" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "विन्यास मान %s.%s खोजे गए किसी भी रूप विन्यास में नहीं दिखा" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "विन्यास का असमर्थित रूप विकल्प %r दिया गया" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "रुपविन्यास के पथ में फाइल %r कोई प्रमाणिक ज़िप फाइल नहीं है या इसमें कोई रुपविन्यास नहीं सहेजा गया है" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "%r नामक कोई रूप विन्यास नहीं मिला (theme.conf अनुपस्थित?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -530,8 +572,8 @@ msgstr "%s निर्माता के लिए योग्य चित msgid "building [mo]: " msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "परिणाम लिखा जा रहा है..." @@ -580,7 +622,7 @@ msgstr "%d स्रोत फाइलें आदेश स्थान म msgid "targets for %d source files that are out of date" msgstr "%d फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "निर्माणाधीन [%s]: " @@ -589,50 +631,50 @@ msgstr "निर्माणाधीन [%s]: " msgid "looking for now-outdated files... " msgstr "अप्रचलित फाइलों को चिन्हित किया जा रहा है..." -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d मिला" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "एक भी नहीं मिला" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "स्थिति को परिरक्षित किया जा रहा है" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "संगतता की जांच की जा रही है" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "कोई प्रयोजन कालातीत नहीं है" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "स्थिति का नवीनीकरण किया जा रहा है" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया गया" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "स्रोतों को पढ़ा जा रहा है..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -641,36 +683,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "चित्रलेख फाइल %r की प्रतिलिपि नहीं की जा सकी:%s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "चित्रलेख फाइल %r नहीं लिखा जा सका:%s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "पिलो नहीं मिला - चित्र फाइलों की प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -678,470 +720,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s के लिए अज्ञात लेख प्रकार, छोड़ा गया" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "%s फाइल को लिखा जा रहा है..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "संक्षिप्त विवरण फाइल %(outdir)s में है." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "%s संस्करण में कोई परिवर्तन नहीं हैं." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "सार फाइल को लिखा जा रहा है..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "अंतर्निर्मित" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "प्रभाग स्तर" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "स्रोत फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "परिवर्तन सूची बनाने के लिए %r को नहीं पढ़ा जा सका" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "मूक निर्माता से किसी फाइलों की उत्पत्ति नहीं होती." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ई-पब फाइल %(outdir)s में है." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_language\" (अथवा \"language\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_uid\" एक्स.एम्.एल. नाम होना चाहिए" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_title\" (अथवा \"html_title\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_author\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_contributor\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_description\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_publisher\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_copyright\" (अथवा \"copyright\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_identifier\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "सन्देश सूचीपत्र %(outdir)s में हैं." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "%d नमूना फाइलों के लक्ष्य" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "नमूनों को पढ़ा जा रहा है..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "सन्देश सूचीपत्रों को लिखा जा रहा है..." -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "खंडित कड़ी: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "पुस्तिका पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "कोई \"man_pages\" विन्यास मान नहीं मिला; कोई नियमावली पृष्ठ नहीं लिखे जाएंगे" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "लिखा जा रहा है" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें है." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "एकल लेखपत्र संकलन किया जा रहा है" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "अतिरिक्त फाइलों को लिखा जा रहा है" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "टेक्सइन्फो पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nइन्हें मेकइन्फो से चलाने के लिए उस निर्देशिका में 'मेक' आदेश चलायें\n(ऐसा स्वचालित रूप से करने के लिए यहाँ 'मेक इन्फो' आदेश का उपयोग करें)" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "कोई \"texinfo_documents\" विन्यास मान नहीं मिला; कोई लेखपत्र नहीं लिखे जाएंगे" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "%s की प्रक्रिया जारी" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "सन्दर्भों का विश्लेषण किया जा रहा है..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (में" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "टेक्सइन्फो सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "मेकफाइल लिखने में त्रुटि: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "पाठ फाइल %(outdir)s में हैं." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "%s फाइल लिखने में व्यवधान: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "छद्म-एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "निर्माण सूचनापत्र फाइल खंडित है: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुक्रमाणिका" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "आगामी" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "पूर्ववर्ती" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "अनुक्रमाणिका निर्मित की जा रही है" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| " -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "अमान्य js_file: %r, उपेक्षित" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "अज्ञात math_renderer %r दिया गया." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s दिग्दर्शिका" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "लाटेक्स लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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 से चलाने के लिए उस निर्देशिका में 'मेक' आदेश चलायें\n(ऐसा स्वचालित रूप से करने के लिए यहाँ 'make latexpdf' आदेश का उपयोग करें)" -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "कोई \"latex_documents\" विन्यास मान नहीं मिला; कोई नहीं लिखे जाएंगे" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "अनुक्रमणिका" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "आवृत्ति" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "%r भाषा के लिए कोई बाबेल विकल्प नहीं " -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "टेक्स सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "टेक्स सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "अतिरिक्त फाइलों की प्रतिकृति बनाई जा रही है" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1156,15 +1198,15 @@ msgstr "%r में कोई \"रूप\" मान नहीं है" msgid "%r doesn't have \"%s\" setting" msgstr "%r में कोई \"%s \" मान नहीं है" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1223,8 +1265,8 @@ msgstr "त्रुटि की सूचना ." msgstr "" @@ -1256,257 +1298,264 @@ msgid "path to output directory" msgstr "परिणाम निर्देशिका का पथ" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "पुनर्निर्माण के लिए निश्चित फाइलों की सूची. यदि -a निर्दिष्ट है तो उपेक्षा कर दी जाएगी" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "सामान्य विकल्प" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "प्रयोग के लिए निर्माता (मानक: एच.टी.एम्.एल. #html#)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "सभी फाइलें लिखें (मानक: केवल नई और परिवर्तित फाइलें लिखें)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "सहेजी गयी परिस्थिति का प्रयोग न करें, सदैव सभी फाइलों को पढ़ें" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "संचित परिस्थिति और डॉक-ट्री फाइलों का पथ (मानक: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "यदि संभव हो तो समानांतर N प्रक्रियाओं में निर्माण करें (ऑटो #auto# विशेष मान द्वारा cpu-count को N पर लगा दिया जाएगा)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "पथ जहाँ पर विन्यास फाइल (conf.py) स्थित है (मानक: SOURCEDIR के समरूप)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "किसी भी विन्यास फाइल का उपयोग ही न करें, मात्र -D विकल्प" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "विन्यास फाइल के एक मान का उल्लंघन करें " -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "एच.टी.एम्.एल. के नमूने में राशि प्रेषित करें" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "नाम-पत्र परिभाषित करें: केवल नाम-पत्र वाले खण्डों का समावेश करें" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "गहन जांच का पालन करें, सभी अनुपस्थित संदर्भों के बारे में सचेत करें" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "प्रदर्शित परिणामों के विकल्प" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "शब्द-प्रयोग बढ़ाएं (पुनरावृत्ति की जा सकती है) " -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "एस.टी.डी आउट #stdout# पर कोई परिणाम नहीं, एस.टी.डी एरर #stderr# पर चेतावनियाँ " -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "कुछ भी निर्गमित नहीं, यहाँ तक कि चेतावनी भी नहीं" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "रंगीन परिणाम ही दिखाएँ (मानक: स्वतः अनुमानित)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "रंगीन परिणाम नहीं दिखाएँ (मानक: स्वतः अनुमानित)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "चेतावनियाँ (और त्रुटियाँ) दी गई फाइल में लिखें" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "चेतावनियों को अशुद्धि मानें" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "अपवाद होने पर पूरा विलोम-अनुगमन देखें" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "अपवाद होने पर पी.डी.बी. चलाएं" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "-a विकल्प और फाइल के नामों को सम्मिलित नहीं किया जा सकता" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "चेतावनी फाइल %r नहीं खोली जा सकी: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D विकल्प का मान नाम = मान के रूप में होना आवश्यक है" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A विकल्प का मान नाम = मान के रूप में होना आवश्यक है" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "प्रभागों में से डॉक्-स्ट्रिंग स्वतःसम्मिलित करें" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "डॉक्-टेस्ट अंशों के निर्देश भाग की स्वतः जाँच करें" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "भिन्न परियोजनाओं के स्फिंक्स प्रलेखों का पारस्परिक सम्बन्ध करने दें" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "वह \"शेष\" प्रविष्टियाँ लिख लें, जिन्हें निर्माण के समय दिखाया या छिपाया जा सकता है" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "प्रलेखों की व्याप्ति की जाँच करें" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "गणित को सम्मिलित करें, पी.एन.जी. अथवा एस.वी.जी. में चित्रित" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "गणित को सम्मिलित करें, दिग्दर्शक में मैथजाक्स #MathJax# द्वारा प्रदर्शित" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "विन्यास मान के आधार पर सामिग्री का सशर्त समावेश" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "पाइथन विषयवस्तुओं के प्रलेखों के स्रोत निर्देश की कड़ी जोड़ें" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "गिटहब GitHub पर लेखपत्र प्रकाशित करने के लिए .nojekyll फाइल बनाएं" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "कृपया एक मान्य पथ का नाम दें" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "कृपया कुछ वाक्यांश लिखें" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "%s में से एक चुनें" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "कृपया हाँ के लिए 'y' अथवा नहीं के लिए 'n' मात्र दें. " -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "कृपया एक फाइल प्रत्यय दें, जैसे कि '.rst' अथवा '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "स्फिंक्स %s त्वरित-आरंभ #sphinx-quickstart# उपकरण के लिए अभिनन्दन" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "कृपया निम्न विन्यासों के लिए मान प्रदान करें (मानक मान, यदि कोष्ठक में हो तो, स्वीकार करने के लिए एन्टर दबाएँ)" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "चुना हुआ बुनियादी तथा मूल स्थान: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "आलेख का बुनियादी स्थान बताएं." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "आलेख का बुनियादी पथ" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "त्रुटि: एक मौजूदा conf.py फाइल दिए गए मूल पथ में प्राप्त हुई है." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "स्फिंक्स-त्वरित-आरम्भ #sphinx-quickstart# मौजूदा स्फिंक्स परियोजनाओं पर पुनर्लेखन नहीं करेगा." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "कृपया एक नया मूल पथ दें (अथवा निकलने हेतु सिर्फ एन्टर #Enter# कर दें)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "आपके पास Sphinx द्वारा बनाई गई फाइलों को सहेजने के लिए दो विकल्प हैं.\nया तो आप मूल स्थान में ही \"_build\" निर्देशिका प्रयोग करें, अथवा\nमूल पथ में भिन्न \"स्रोत\" और \"build\" निर्देशिका प्रयोग करें." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "विभिन्न स्रोत और निर्माण डायरेक्टरी (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "मूल निर्देशिका के अन्दर, दो और निर्देशिका बनाई जाएँगी;\nपरिवर्धित एच.टी.एम्.एल. नमूनों के लिए \"_templates\" और परिवर्धित रुपपत्रों और अन्य स्थैतिक फाइलों के लिए \"_static\"\nआप अधोरेखा के स्थान पर अन्य पूर्व-प्रत्यय (जैसे कि \".\") का प्रयोग कर सकते हैं." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "नमूने और स्थैतिक डायरेक्टरी के लिए पूर्व-प्रत्यय" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "परियोजना का नाम बनाये गए प्रपत्रों में बहुत से स्थानों पर प्रयुक्त होगा." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "परियोजना का नाम" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "लेखक(कों) का नाम" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "परियोजना संस्करण" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "परियोजना आवृत्ति" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "यदि प्रलेखों को अंग्रेजी के अलावा अन्य किसी भाषा में लिखा जाना है,\nतो यहाँ पर आप भाषा का कूटशब्द दे सकते हैं. स्फिंक्स तदपुरांत,\nजो वाक्यांश बनाता है उसे उस भाषा में अनुवादित करेगा.\n\nमान्य भाषा कूटशब्द सूची यहाँ पर देखें\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "परियोजना की भाषा" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "स्रोत फाइल का प्रत्यय" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "आपने मुख्य लेखपत्र का नाम दें (प्रत्यय रहित)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "त्रुटि: मुख्य फाइल %s चुने हुए मूल पथ में पहले से उपलब्ध है." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "स्फिंक्स-त्वरित-आरम्भ मौजूदा फाइलों पर पुनर्लेखन नहीं करेगा." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "कृपया एक नया फाइल नाम दें, अथवा मौजूदा फाइल का पुनर्नामकरण करें और एन्टर दबाएँ" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "इनमें से कौन सा स्फिंक्स आयाम प्रयोग करना है, इंगित करें:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "टिप्पणी: imgmath और mathjax एक साथ समर्थ नहीं हो सकते. imgmath को अचिन्हित कर दिया गया है." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "मेकफाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "विंडोज़ कमांड फाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "फाइल बनाई जा रही है ...%s" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "फाइल %s पहले से उपस्थित है, छोड़ दी गई." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "समाप्त: एक प्रारंभिक निर्देशिका का ढांचा बना दिया गया है." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nस्फिंक्स परियोजना के लिए आवश्यक फाइल बनाएं.\n\nस्फिंक्स-त्वरित-आरम्भ एक संवादपूर्ण उपकरण है जो आपकी परियोजना के \nबारे में कुछ प्रश्न पूछकर पूरी प्रलेखों की निर्देशिका और नमूना मेकफाइल \nबना देता है जिसे स्फिंक्स-बिल्ड में प्रयोग किया जा सकता है.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "शांत ढंग " -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "ढांचे के विकल्प" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "यदि निर्दिष्ट हो तो विभिन्न स्रोत और निर्माण पथ" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "_templates आदि में बिंदु का बदलाव" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "परोयोजना के मूलभूत विकल्प" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "परियोजना का नाम" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "लेखकों के नाम" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "परियोजना का संस्करण" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "परियोजना की आवृत्ति" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "लेखपत्र की भाषा" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "स्रोत फाइल का प्रत्यय" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "मुख्य लेखपत्र का नाम" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "ई-पब प्रयोग करें" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "आयाम के विकल्प" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "आयाम %s सक्षम करें" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "स्वेच्छित आयाम सक्षम करें" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "मेकफाइल और बैचफाइल का सर्जन" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "मेकफाइल बनाएं" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "मेकफाइल नहीं बनाएं" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "बैचफाइल बनाएं" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "बैचफाइल नहीं बनाएं" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat के लिए make-mode का प्रयोग करें" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat के लिए make-mode का प्रयोग नहीं करें" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "परियोजना नमूनावृत्ति" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "नमूना फाइलों के लिए नमूना निर्देशिका" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "नमूना चर-पद का निरूपण करें" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"शांत\" निर्दिष्ट है, परन्तु कोई भी \"परियोजना\" अथवा \"लेखक\" निर्दिष्ट नहीं है." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "त्रुटि: दिया गया पथ निर्देशिका नहीं है, अथवा स्फिंक्स फाइलें पहले से उपस्थित हैं." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "स्फिंक्स-त्वरित-आरम्भ केवल एक खाली निर्देशिका में कार्यशील हो सकती है. कृपया एक नया मूल पथ निर्दिष्ट करें." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "अमान्य नमूना चर-पद: %s" @@ -1828,47 +1877,47 @@ msgstr "\"lineno-match\" का प्रयोग बिना जुडी \"l msgid "Line spec %r: no lines pulled from include file %r" msgstr "लाइन ब्यौरा %r: सम्मिलित फाइल %r से कोई लाइन नहीं ली जा सकीं" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "विषय-सूची-संरचना में छोड़े गए लेखपत्र %r का सन्दर्भ है" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "विषय-सूची-संरचना में अविद्यमान लेखपत्र %r का सन्दर्भ है" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "भाग के लेखक:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "प्रभाग लेखक:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "निर्देश लेखक:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "लेखक:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1883,82 +1932,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "मापदण्ड" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "प्रदत्त " - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "प्रदत्त प्रकार " - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "सदस्य" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "चर पद" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "फंक्शन" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "मैक्रो" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "युग्म" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "गणक" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "प्रगणक " - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "प्रकार" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "संस्करण %s से नया " +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "संस्करण %s से अलग " msgid "Deprecated since version %s" msgstr "संस्करण %s से प्रतिबंधित " -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "प्रतिरूप उद्धरण %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं है" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "नमूना मानदण्ड " - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "देता है " - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "वर्ग" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "अवधारणा " - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (वर्ग)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "चर " -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "देता है " + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "प्रदत्त " + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "प्रदत्त प्रकार " + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "फंक्शन" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "पद्धति" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "वर्ग" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "लक्षण" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "प्रभाग" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "चर पद " +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (निर्देश)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "उभारता है " +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (भूमिका)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "निर्देश" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "भूमिका" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "मापदण्ड" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "सदस्य" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "चर पद" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "मैक्रो" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "युग्म" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "गणक" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "प्रगणक " + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "प्रकार" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "नमूना मानदण्ड " + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "अवधारणा " + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "अपवाद " -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(अवमानित)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (निर्देश)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (भूमिका)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "निर्देश" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "भूमिका" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "चर पद " -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "उभारता है " -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "परिस्थिति चर पद; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "पारिभाषिक पद" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "व्याकरण संकेत " -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "सन्दर्भ शीर्षक" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "परिस्थिति चर पद " -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "प्रोग्राम विकल्प " -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "लेखपत्र" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "प्रभाग सूची" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "खोज पृष्ठ" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig असमर्थ है. :numref: उपेक्षित है." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "कड़ी का कोई शीर्षक नहीं है: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "अमान्य numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "अमान्य numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2326,35 +2380,35 @@ msgstr "विन्यास परिवर्तित" msgid "extensions changed" msgstr "आयाम परिवर्तित" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." @@ -2378,39 +2432,39 @@ msgstr "अनुक्रमणिका की प्रविष्टि क msgid "Symbols" msgstr "संकेत " -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "पारस्परिक संदर्भित विषय-सूची-संरचना सन्दर्भ पाए गए, उपेक्षा की जा रही है: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "विषय-सूची-संरचना में लेखपत्र %r, जिसका कोई शीर्षक नहीं है, का सन्दर्भ है: कोई सम्बन्ध नहीं बनाया जा सकेगा" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "चित्र फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "चित्र फाइल %s पठनीय नहीं है: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "उतारी गई फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s में पहले से भाग संख्या नियत है (एक के अन्दर दूसरा अंकित विषय-सूची-संरचना)" @@ -2420,7 +2474,7 @@ msgstr "%s में पहले से भाग संख्या निय msgid "Would create file %s." msgstr "%s फाइल बन जाएगी." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n में पाइथन प्रभाग और पैकेज की पुनरावर्तित खोज करें और\nस्वतःप्रभाग निर्देश द्वारा में प्रति पैकेज एक रेस्ट #reST# फाइल बनाएं.\n\n फाइल और/ अथवा निर्देशिका स्वरुप हो सकते हैं\nजो निर्माण प्रकिया में छोड़ दिए जाएंगे.\n\nनोट: सामान्यतया यह स्क्रिप्ट किसी पहले से बनाई गई फाइल पर पुनर्लेखन नहीं करती." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "प्रभाग से लेखपत्र का पथ" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fnmatch-style फाइल और/ अथवा निर्देशिका स्वरुप जो निर्माण प्रक्रिया से छोड़ने हैं" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "सभी परिणामों को सहेजने के लिए निर्देशिका" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "विषय-सूची में दिखाए जाने वाले उपप्रभागों की अधिकतम गहराई (मानक: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "मौजूदा फाइलों पर पुनर्लेखन करें" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "सांकेतिक कड़ियों का अनुसरण करें. कलेक्टिव.रेसिपी.ऑमलेट के साथ प्रभावशाली. " -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "फाइलों को बनाए बिना स्क्रिप्ट चलाएं " -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "प्रत्येक प्रभाग के आलेख उसके अपने पृष्ठ में रखें" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "\"_private\" प्रभाग को सम्मिलित करें " -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "विषय-सूची की फाइल का नाम (मानक: प्रभाग) " -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "विषय-सूची की फाइल न बनाएं " -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "प्रभाग/पैकेज पैकेजों का शीर्षक न बनाएं (उदाहरणार्थ, जब डॉकस्ट्रिंग्स में यह पहले से हों) " -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr " मुख्य प्रभाग के आलेख को उपप्रभाग के आलेख से पहले रखें" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "प्रभाग पथ की व्याख्या 'पी.ई.पी.-0420 निहित नामराशि विवरण' के आधार पर करें " -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "फाइल प्रत्यय (मानक: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "स्फिंक्स-त्वरित-आरम्भ के साथ पूर्ण परियोजना उत्पन्न करें " -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "मोड्यूल_पाथ #module_path# को सिस.पाथ #sys.path# में जोड़ें, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "परियोजना का नाम (मानक: मूल प्रभाग का नाम) " -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "परियोजना लेखक(गण), जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "परियोजना संस्करण, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "परियोजना आवृत्ति, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "आयाम विकल्प " -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s एक निर्देशिका नहीं है. " -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "अमान्य रेगएक्स #regex# %r, %s में " -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "स्रोतों की व्यापकता की जांच पूरी, परिणाम %(outdir)spython.txt में देखें. " -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "अमान्य रेगएक्स #regex# %r, coverage_c_regexes में " -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "प्रभाग %s का आयत नहीं किया जा सका: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2598,24 +2652,24 @@ msgstr "'%s' एक मान्य पाईवर्शन #pyversion# वि msgid "invalid TestCode type" msgstr "अमान्य टेस्टकोड का प्रकार " -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "स्रोतों में डॉकटेस्ट्स की जांच पूरी, परिणाम %(outdir)s/output.txt में देखें. " -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "%s भाग में %s पर कोई निर्देश / परिणाम नहीं: %s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "अमान्य डॉकटेस्ट निर्देश की उपेक्षा की जा रही है: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "ग्राफविज़ निर्देश में दोनों मापदंड, विषय-वस्तु और फाइल का नाम, नहीं हो सकते" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "बाहरी ग्राफविज़ फाइल %r नहीं मिली अथवा पढने में असफलता मिली" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "विषय-वस्तु के बिना ग्राफविज़ निर्देश की उपेक्षा की जा रही है. " -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "डॉट निर्देश %r नहीं चलाया जा सकता (ग्राफविज़ परिणाम के लिए आवश्यक), ग्राफविज़_डॉट मान की जांच करें" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "डॉट त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "डॉट ने किसी परिणाम फाइल का नहीं बनाया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "ग्राफविज़_आउटपुट_फॉर्मेट का 'पी.एन.जी', 'एस.वी.जी.', होना आवश्यक है, पर यह %r है" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "डॉट निर्देश %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "परिवर्तक त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "लाटेक्स आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). आई.एम्.जी.मैथ_लाटेक्स मान की जाँच करें" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). imgmath_%s मान की जाँच करें" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "लाटेक्स दिखाएँ %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "पंक्तिबद्ध लाटेक्स %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "इन्टरस्फिंक्स सामान को %s से चढ़ाया जा रहा है ..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s में)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(%s में)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[स्रोत]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "अपूर्ण " -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "अपूर्ण प्रविष्टि मिली: %s " -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<<मूल प्रविष्टि>>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<मूल प्रविष्टि>> %s, पंक्ति %d में उपस्थित है.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "मौलिक प्रविष्टि" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "प्रभाग निर्देश विशिष्ट रूप से दर्शाया जा रहा है..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "प्रभाग निर्देश" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s का स्रोत निर्देश

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "सिंहावलोकन: प्रभाग निर्देश" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

सभी प्रभाग जिनके लिए निर्देश उपलब्ध है

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "स्वतः %s (%r) के लिए अमान्य हस्ताक्षर" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "पता नहीं है कि कौन सा प्रभाग स्वतःप्रलेखन %r के लिए आयात करना है (लेखपत्र में \"प्रभाग\" या \"वर्तमान-प्रभाग\" निर्देश रख कर देखें; अथवा स्पष्ट प्रभाग नाम देकर देखें)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "स्वतः प्रभाग नाम में \"::\" विवेकहीन है" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "स्वतः-प्रभाग %s के लिए हस्ताक्षर पद अथवा प्रत्युत्तरित टिप्पणी प्रदान की गई" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ अंतिम अक्षरमाला होनी चाहिए, न कि %r (%s प्रभाग में) -- __all__ की उपेक्षा की जाएगी" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,26 +3055,26 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "पद-विच्छेदन में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "मुख्य शब्दों के चर-पद" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "उदाहरण" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "कुछ उदाहरण" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "टिप्पणियाँ" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "अन्य मापदण्ड" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "सन्दर्भ" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "चेतावनी देता है" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "मिलता है" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "सावधानी" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "चेतावनी" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "गलती" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "संकेत" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "महत्त्वपूर्ण" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "टिप्पणी " -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "यह भी देखिए" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "सलाह" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "चेतावनी" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "विषय-सूची" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "खोज" @@ -3345,34 +3404,22 @@ msgstr "अगला प्रकरण" msgid "next chapter" msgstr "अगला अध्याय" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज कार्य के लिए जावा स्क्रिप्ट का होना आवश्यक है. कृपया जावा स्क्रिप्ट को शुरू करें." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "खोज" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "खोज परीणाम " - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "आपके खोज परिणामों में कोई प्रलेख नहीं मिला. कृपया सुनिश्चित करें कि सभी शब्दों की वर्तनी शुद्ध है और आपने यथेष्ट श्रेणियां चुनी हैं." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "त्वरित खोज" @@ -3409,20 +3456,30 @@ msgstr "सी ऐ.पी.आई. परिवर्तन" msgid "Other changes" msgstr "अन्य परिवर्तन" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "खोज परीणाम " + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "आपके खोज परिणामों में कोई प्रलेख नहीं मिला. कृपया सुनिश्चित करें कि सभी शब्दों की वर्तनी शुद्ध है और आपने यथेष्ट श्रेणियां चुनी हैं." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "खोज जारी" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "खोज की तैयारी" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", में " @@ -3443,30 +3500,30 @@ msgstr "किनारे का स्थान बढ़ाएं" msgid "Contents" msgstr "विषय सामिग्री" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 पंक्तिबद्ध सूचियाँ मिलीं. यह आपके द्वारा उपयोग किए गए आयाम की त्रुटि हो सकती है: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "पाद-टिप्पणी [%s] का कोई सन्दर्भ नहीं है." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "पाद-टिप्पणी [#] सन्दर्भ कहीं नहीं है" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "अनुवादित संदेश में असंगत प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "अनुवादित संदेश में असंगत उद्धरण के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "दूरस्थ चित्र नहीं लाया जा सका: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "दूरस्थ चित्र नहीं लाया जा सका: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "अज्ञात चित्र प्रारूप: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "छोड़ा " -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "असफल" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "अज्ञात बिंदु प्रकार: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "अशुद्धि पाठन: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "अशुद्धि लेखन: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "अमान्य तिथि प्रारूप. यदि आप सीधे परिणाम में दर्शाना चाहते हैं तो अक्षरमाला को एकाकी उद्धरण चिन्ह द्वारा चिन्हित करें: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "विषय-सूची-संरचना में अविद्यमान फाइल %r का सन्दर्भ है" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "केवल निर्देशक भाव का मूल्यांकन करते समय अपवाद: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "मानक भूमिका '%s' नहीं मिली" @@ -3617,27 +3674,27 @@ msgstr "%s बिंदु के लिए कोई पहचान-चिन msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है." @@ -3654,13 +3711,13 @@ msgstr "अत्याधिक अधिकतम गहराई # :maxdepth: msgid "document title is not a single Text node" msgstr "लेखपत्र का शीर्षक एकल पाठ बिंदु नहीं है" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "पाद टिप्पणियां" @@ -3679,20 +3736,20 @@ msgstr "परिमाण मात्रक %s अमान्य है. उ msgid "unknown index entry type %s found" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[चित्र: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "शीर्षक रेखाचित्र के भीतर नहीं है" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented 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 f1e1853f26200534593590ec4cc8dace541d6f3c..ff004789ca0dd20d12b2251a570113e489c1812c 100644 GIT binary patch delta 30 lcmeyy{Ec}+Gp~uRfr+l6iGq=_m67?z35krXCVB>33;>YQ2i5=p delta 30 lcmeyy{Ec}+Gq16(frYN2xq_jIm8r$X35krXMtX)^3;>a32j2hy diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index b1d83ed9acd..41ea3c0f862 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://app.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 40dbdc20fffcba9102e5bf13210757cc35efa3cf..925a52edbe533c1a882c5b4d1a636573d5a298b6 100644 GIT binary patch delta 3616 zcmYM$3v7;89LMpat?He(T6L|K-c;N5@=lAkFKw4GsmP{jW|Yij#v*JjO5;_Rjm2D2 zCSiX=Y7sO|MUN!=V9T(cJEes zuZH`rGyGiPw;ZVrSZZVaB+yE2^E0T`(Uz zVF~gvQ}`2OjMr3fp#dLaFz!T6d;m4@7;4}}jKW*k6`x`VMs;)+io+hXb1)7^<6*4C zEX-mO&Hn~!Bky21>zhh0(&<=%n&2o#;$>7Icdd^wfVMBu=3@xz`w^IgCDsKPO?wA= zuo*SZKitV=M~tQ23v*cCc({nix!3_WqXO8DZfr!dYwjU2m^SQ=oyc!*?2lSt1S+7> z*bB>0)vUrGT#VY_N}PbZ(W_JhM>r{Up(aX3vTL$12MbVv%||V;7*(1NP=Rej<}!8Y zgUwioCvATyyYZtPi)omEnx`a^{HtR;9SUS6@-b_zyHOK=X}y4C)7(a-@G(+e)01d2 zF$J~L@u;&g4fXvTRPEoh{WYljwsax?y4XX9YIq10=`~Ej8^|V%i<76FCZICpM%FfY zsPV600hXZx-ipfLLDXS9Zu{?`0(*igO^}zPtkk+t5q7ifc%;lG6?NkfR3I;+?i-6* zU@EGnb5JR*K?Sr4byjww0zQly_Z8~!o_B@NYc!4d^QfX&`nf8E%-h@MaFy0a>7?+t5G+8WZTQ%B6m_=hP^oV~t#bn1dj3yy!N>S8yLQkUwLlzd;WX6u z+1Amh`)1**I2+w~*7mpO;a3TQP$i2*vTc%4^A=(;7Gs5;|BYN|fQyG&k@rNUunZMI z1?uoEu&%&7+8a0*y!2I1S^`gSu}rQXNx{dK_1y#%+lu|5~t?4$hU? zi)uHcYIzz5;blz52%=ObJg8I_<9aN$-bI~>_xiG1+=N=_F{WZ0D$vw8`hAQU5a)F! z9Gu|XI2@V7j6^Lk3zfS0sHdYEwS#r2+SZ~{dIYue^QawPM`hr??eCiCl(-*iUN@@5 z`CcwGumpJ`%oJ26s!==Lh7XHP1Oz>aUkVMg?#d zUHCI<{C#{LJ7hWmvhNxcy4aIOA zfyG#cvvDtKp}qs0%p{}6XQKx_sK?QZx^FXTzFO3}-hK9l28^NO5-Q?{I1&A_o&N() zMZH+IqISF;Bk)sHpv|ZWuVE?P#&R5zYkH!NEAp zwwEAd%v$V>r;&dS%rB^&`BF%|!1|!RPqOV?)Q$^Khjh5@pJDsUF;~z3d@dAu18RaM zRP8U?{u`(TT2MP~MGm?NAj&Q{5WC?h)LEK_y1xn)z#@#otrGeRih$YiX*KT?Du1M?`qt1^u;EmTIK|5+`oDC-NRY~YI;Yx>)(n>52|mC{mrMQ zfBc$IcWSyjHNzc~nKdXgyZ&VSrgpyWwDkHn6DtF29;D~hzm{<;sD4dui%(6Xr|3WG CD{LzO delta 4093 zcmZ|Q3s9A19>?)VK!GEqTtr>OUI-8sIC2pIMN-tPG;_u-T39E}K@P|{$T^TU*=f5+ zR@%|ZNz2O0OJ#&i+Kr|xOJ}+}Wi_r-vuo|D)z~_-J596SALpsI*;xkpywCGK*Z=c> zUhlZ^=9`B^j-@ATGW;Cp-#GnC zU>4;^aU}L5zvdnOIL1WG5gydxEDpz{5wU?YQ60ylI!?vWI1k6*a!kSNQ4`;W+4wN# z<6hj4N3jB<45IN5qBimgrZc}e%EJ^YPND|LVKt+$2DQUQ)}@$4xd~_DN?X4hizxS7 zkKuUAiRs4FV&HUyu9t!YtRP=vAEnpbis>E@qj*F2snrrY+*n#Kb zJ*WwGqZYgubMSQ>hF_rzzd>#AG+v9YOyaLlwDF*ju0jpegF2%qR^t<>g?)*d;2YG@ zoI))ufz>jmNyj)W#0H#b>)SDb@}IF3??8>yKZ^LPVt@)QqoY z7m&0t`%vu;qZaZp4(<#!!5P#U$Bm7Jcsy!BMX21VKrMIh9n}S>oi(8w{ixj9jQV6hjjYkUhiZ2M zBP6If#e+gWlshF;P#rRCxe67bI-G-ZQ9J8FO>jS!;1(>xLpYd>sCID-mV}9@Bpita zn43rZ)$jr;IDT_E>OOa(I^Kd>(49#Bnfq*c2kLD1U@g9alkhC+TIQY?J2E#uM7hTL z5h_Rg`Nmw0k^Be=#=}=sXhjM9(ZrKbJ948|-l+OGvK}=-8=cf{4Kk;>36&#{<51j< zx;?$94ZV#z`y;4`{~Z;HxCrr51Tv7ZO&;pSd{hoBMGfpl_qj8qS`-;iqKm)9}l56lEK|neF?gm-&EQPFV3XghUefe)DHKf zK1d&+c6t((OuwLxBx6b}iE~i7GZ*LJ<*0=|f+@HiHEu5|0&ieMp*(CWK0{6LHLBrH zNHk4+8Hs~aPy;SQHe;GF4IjV}xE&Rdy{OQ?idx`@s2uqMweV5pvG$Y7iNDUKmI}SN z2Guc)8t5+6%GaY-ycHF?9jH+5vE}zr{Xayt`zxm752(n+lTg}_gBs6`TJVet;-ALD z0xC4Xa-51G)B<**2JE%(U&U)Fe}vjmd1b7BJFcP}!4CWpHQ{v(rUkD;-LloF+prcD znavR%G{KXYiO*vvzJ=;oRTazjI@E$LwB^ON+=x07AL_aVZ2dY^GHygo^c*T8FX2Kw zgxwe!Gc7jJ{ix79h??k0RJQL%UC)1@7UZgq4VZ?SI2-joA02E!<&+njumkxupYlf$ zNUe!&I33w=#N_ZWh8N|i0WZcYa0!O-S=3qO67ShqhNCcyYTtt+F^Ypph|?+WwdEgB z3s7YS)FA&anT0rB_dm#kzG(N^1{-a82WrR9qms1W)_-B^kK+vLPoNf(PeBuupxV#E zN!X0ag$<~7+feiE#7y1)Jv?yJ%mK{8f8tn7;d`m%EJSsvMlEP2j>fr|ijB71h7FW& z#R+&26`Ai*IiQcr?clPm$0{|*;-D|X33x89#T?v<@%RdoFJ=HW(AoOFms8IqjkwTUPN=J?#c2u#n*A%BZqLdtUoEftj%8K2E(-*maEq_q=L9_M zKCe^I=`;ts0$!)6-5(1111n;0OVzo4qWM3qiAi}KH%p~M`tkLIk3SO@DvlO(8^Zdfel^Mw|3E_@6+1T eaWj5xE;X&EyRGZ@{hHr~`{VoAKBI5c&HE4Zd-wkU diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index e704ce14a8d..b389a3c2024 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://app.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" @@ -38,104 +38,104 @@ msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" msgid "Running Sphinx v%s" msgstr "Izrada pomoću Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je instalirati Sphinx v%s ili višu verziju." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "izrada izlazne mape" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmijenite definiciju 'setup' funkcije kako bi ju mogli izvršiti iz Pythona. Ovo je potrebno kako bi conf.py imao karakter Sphinx proširenja. " -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ne može se nadjačati osnovna konf. postavka %r, zanemarena je (koristite %r za postavljanje pojedinačnih elemenata)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "ne može se nadjačati konf. vrijednost %r zbog nepodržanog tipa, zanemareno" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Ne postoji konfiguracijska vrijednost: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Postoji sintaksna greška u konfiguracijskoj datoteci: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,291 +232,328 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nije pronađen, zanemareno je." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Događaj %r već postoji" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nepoznato ime događaja: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Ovaj projekt treba proširenje %s najmanje u verziji %si stoga se ne može izraditi s postojećom verzijom (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa %s nema \"name\" svojstvo" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r već postoji (u modulu %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder imena %s nije registriran ili dostupan pomoću poziva" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Builder %s nije registriran" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domena %s je već registrirana" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nije još registrirana" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser za %r je već registriran" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "proširenje %r se već nalazi u Sphinxu od verzije %s; ovo proširenje se zanemaruje." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Izvorna iznimka:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Proširenje %s ne može biti uvezena" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "proširenje %r nema funkciju setup(); radi li se o ispravnom Sphinx modulu proširenja?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "%s proširenje traži Sphinx verzije v%s; stoga projekt ne može biti izgrađen s ovom verzijom." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "proširenje %r vratio je nepodržan objekt iz setup() funkcije; rezultat treba biti None ili riječnik metapodataka" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "tema %r nema postavku \"theme\"" +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "postavka %s.%s ne pojavljuje se u pretraženim konfiguracijama tema" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "tema %r nema postavku \"inherit\"" +msgid "unsupported theme option %r given" +msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "tema %r nije pronađena, nasljeđuje ju %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "datoteka %r iz teme nije ispravna (zip) arhiva ili ne sadrži temu" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "postavka %s.%s ne pojavljuje se u pretraženim konfiguracijama tema" +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "datoteka %r iz teme nije ispravna (zip) arhiva ili ne sadrži temu" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "nema teme %r (nedostaje theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Ugrađeni dijelovi" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (u " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Opceniti abecedni indeks" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "naprijed" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "nazad" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentacija" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Abecedni popis" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Distribucija" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "Ne može se koristiti \"lineno-match\" sa nespojivom grupom \"lines\"" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specifikacija retka %r: nema redaka preuzetih iz include datoteke %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor sekcije: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor koda:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,82 +1929,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametri" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Vraća" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Vraća tip" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "član" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "varijabla" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcija" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tip" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Novo u verziji %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1967,346 +1944,423 @@ msgstr "Promijenjeno u verziji %s" msgid "Deprecated since version %s" msgstr "Zastarijelo od verzije %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parametri predloška" - -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Baca (iznimke)" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "razred" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "koncept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Baca (iznimke)" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Vraća" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Vraća tip" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcija" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "razred" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Varijable" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directive)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Podiže" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (role)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "Direktive" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "uloga" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametri" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "član" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "varijabla" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tip" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parametri predloška" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "koncept" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "izuzetak" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (zastarjelo)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directive)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (role)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "Direktive" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "uloga" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Varijable" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Podiže" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "varijabla okruženja; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "termin rječnika" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "token gramatike" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "referentna oznaka" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "varijabla okruženja" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programske mogućnosti" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Popis modula" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tražilica" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "Simboli" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "'%s' nije valjana pyversion opcija" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz direktiva ne može imati i sadržaj i ime datoteke za argumente" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Vanjska Graphviz datoteka %r ne postoji ili se ne može čitati" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignoriranje \"graphviz\" direktive bez sadržaja." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot naredba %r ne može se pokrenuti (potrebna za graphviz izlaz), provjerite postavku graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format mora biti 'png' ili 'svg', ali je %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> se nalazi u %s, redak %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "izvorna stavka" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Kod modula" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Izvorni kod za %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Pregled: kod modula" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Svi moduli za koje je dostupan kod

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumenti" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Primjeri" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Pažnja" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Opasnost" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Greška" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Savjet" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Važno" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Napomena" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Više informacija" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Savjet" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Upozorenje" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Traži" @@ -3342,34 +3401,22 @@ msgstr "Sljedeća tema" msgid "next chapter" msgstr "sljedeće poglavlje" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Molimo omogućite JavaScript\n za djelovanje tražilice." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "traži" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Rezultati pretrage" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Zadanim uvjetima nije pronađen dokument. Molim provjerite točnost upisanih riječi i odabir označenih kategija." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Brzo pretraživanje" @@ -3406,20 +3453,30 @@ msgstr "C API promjene" msgid "Other changes" msgstr "Ostale promjene" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Rezultati pretrage" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Zadanim uvjetima nije pronađen dokument. Molim provjerite točnost upisanih riječi i odabir označenih kategija." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Pretraživanje" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Priprema pretrage..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", u " @@ -3440,30 +3497,30 @@ msgstr "Pokaži pomoćnu traku" msgid "Contents" msgstr "Sadržaj" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fusnote" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[slika: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index da1462ab7a8762348625123f9ca6629a5055c81d..df44c6275f5bc245e84c1078fecb212506862072 100644 GIT binary patch delta 2911 zcmYM#4~)-c9KiACx^wP`&M(5<;TNjAlk1%0{9lZ7Nlq7al&p=FVw(XFZPGxwe&|~2b>)H58`$7pTQhlhV5|; zCh;R=d@3BG!6%&L%ZYzOAG{n*T-`E3A$I2a5bT20$S2I^%K)Cjt+)i8uY#xzxEf2a z2J>(+cEWX-&H7od@C^P+WFKz|V$z(zFC zkI_o(L<87|K6fIA`j4XV3l|KegcD)rqp>&Mh0S}52C@V#;p^xYtVRP`AN!jyLH{#! z+yU%}-=O2pq4Qrv&q8K``dgx&JY_^TBe8^XG~!D1!8_42F%4aKRlL6z4X^>7X9wPc zd(i-TaWfr@(25kJrP4s443E3uzNS_YVd-LNYX;~-p$o}E4DxZ~*jsk1aZ9DkxEzKms<#nb*C3`ZlMiat0U2ji@GeNA*dTEPZn zim(NJP4}bEor?E=#pc%=Ngx#x^gJYa(Lyw!ax|df*b~R0do~BncriNeJ@j{>0j=Eb z=)UM7w1P*`L{6adp2pF>|4lS{abYmCcsQn^10O+4JP+NX1@ZoiXdo-mw_-Co{%bUV zz1S5G#{PM<)PJBA{TEF*pYmk;{uj}p8leoGXdJq56?VrO+?*D|lW2*H`E~JqAB>iE z7+Q%6wDjYVV-g-f19<}Zgr$6$$ObgEjQjA#!46|% ze=52a^U?9kl#ODAPDr&wF*>dSt#noF&+Jb9Jsh=MAgC}O-GWzeJidmO z^duV4U+CUt^l15CEP-ay9}VCRG}DKWPngY@^Sy|kjhE5qUqxaK>rym0e_(C6J$J_8N^!^$2Of;cen#J!uON3M>8eSNH zx8o=@keAQ}8qhQH1zL$yXa<+jl4kR68dw5dI2TQ*1g+>;bli-1eNOBzM8>B=J&hy- z)}RaQLKpZJ4d66-HZGwHWbm$*V=fwaHM-~1(X&yDX8asJiuIU|f1`nh*(9B@-hMTVjQRH7A|gwFRcI{!knV)dBv z6t1G-grA}%-HmR+L3E<;(aN015=4m~e`x#+{r~^~ delta 2966 zcmYM!eN5F=9LMoPJcB$)h#(JMNc762U6AC#Br)79kVr#iR3wbLD7$2sG_WqLKTPqV zX)QAK4=SA%ZFGkVQi`OSsNf-#pcj0e}T7;oD89Kxn(T$ql<7>duJ26Efyub=|mjx%sSYP?TT z3pqPDSc3VGyPU?qI zfm}odd>NII8>m2T#gcyw5Jc}K7=sFE1u6s2;w*g8-rtJ~=wnnWKSOQBDO6zRZG9Ny zs9!_1yN&U97u7C`hZ;XAj{NITIJu!zm7)TwK!P;YsEF60I<}zBh8H#Q3Hy8y75ETp zoKakjW2gX@@-Ps~Q5mU3wX0J8HBc>T!sl=szJ%%+NZ6V<0@W_T*3)b~3l(54rs6`> zz}1+K^{7<8g9X@!Izzvr+Ia(bstF=dhh#b`#i^KwS*Y(qEh_TOsE(ajh+X#n8S8me z28WP2%n0gr{SDPGjM?=(4!OK0m0ztO4|PZuS<6rXRigr`#SCmhZP_l=ia$iP`vUcS z7(!+4XX`EN9aIL#Q40y8@f5xP;S@@_k%0GM4eD@sQ4M#Z0^EbzqJ8#xFDj5@sJG@@ zRQsE#0LCy0|FHFF(x6OFLuE7_qxAk4Q&4Kkkt~^2sDYYL6K}vYY{Me~e8EsDtmG@B z_r32V&pQ* z`Qc!jMqA&E+KO&e`y=-GAdXZ24z-YBmaTxV;{yC4h5ReBBzn)n`KXE4pgPo}R@Q_| zaT6+q$4~*BLnmHAwGSdqtieQ~w$O^d z{aB7iQ7H|b=?^Fcby#Pk1M^S|sX_(Nj9Te7(RjV6v+)V4|A3bQ!JD(l!8A9J zxy(3bVzR>@c?oJo)u=$-s8m0XeAG+_Dl@yS2T$Q1XHgUVggPsCQ5l)ZJE@iAp)$Dy6<`@^;+3dC8c~_;K(*WNzwb2% z?TzE84uj~x?@<#>peBgp-BbV$)EUV|wO@q!xDvIHE>xzvQD@{3YQ;yf83!>C7jWRh z^!^u7(0~tHD<&V1YE%GqxD{Jbdl$gIXuvSkO5<%k#nzpu6}oUP7TV|a_!RYKbmCX4 zGr#%M-gtt%YQmRM0qw@gRG|*nL3|KDM{U&v24U(PfBOtvOg$Te(Syp!MpVF^sEqAE zjrT5kHNkNTO4%UlFkV6h@H=XNe^6TxN!S`F2^DB2y08cp(0X)W7lzmmQjmUDxTl&L`-vQ`Yot*C+bpjOml?;l1@^RrzA**W=+oV=n33Vb7pj|Bwg-k;-}H{;2WgwuQ1Io3Mc V=F(XG+8R&$>ehOETO7#|{{bNs80!E4 diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 7138d329792..931f78a36d9 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://app.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -43,104 +43,104 @@ msgstr "A forráskönyvtár és célkönyvtár nem lehet azonos" msgid "Running Sphinx v%s" msgstr "Sphinx %s verzió futtatása" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ez a projekt legalább a Sphinx %s verzióját igényli, és emiatt nem állítható össze ezzel a verzióval." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "kimeneti könyvtár elkészítése" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "a(z) %s kiterjesztés beállításakor:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem meghívható Python függvény. Módosítsa a meghatározását, hogy meghívható függvénnyé tegye. Ez ahhoz szükséges, hogy a conf.py Sphinx kiterjesztésként viselkedjen." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "kész" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "nem érhető el beépített üzenetekhez" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "pickle-t környezet betöltése" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "sikertelen: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Nincs összeállító kiválasztva, az alapértelmezett használata: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "sikerült" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "problémákkal befejeződött" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "%s összeállítás." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a(z) %r csomópontosztály már regisztrálva van, a látogatói felül lesznek bírálva" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,70 +161,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,290 +237,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Fejlesztési Javaslatok; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -532,8 +574,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -582,7 +624,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -591,50 +633,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -643,36 +685,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -680,470 +722,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Beépített" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modul szint" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Általános tárgymutató" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "következő" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "előző" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentáció" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Tárgymutató" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Kiadás" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1158,15 +1200,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1225,8 +1267,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1258,7 +1300,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1266,249 +1310,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1517,15 +1566,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1535,21 +1584,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1557,91 +1606,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1651,135 +1700,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "A megadott útvonal nem egy mappa vagy a sphinx állományok már léteznek." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1830,47 +1879,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Fejezet szerző: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Modul szerző: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Kód szerző: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Szerző: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1885,82 +1934,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Paraméterek" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Visszatérési érték" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Visszatérés típusa" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "tag" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "változó" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "függvény" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makró" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enumeráció" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerátor" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "típus" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Új a(z) %s verzióban" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1972,346 +1949,423 @@ msgstr "A %s verzióban változott" msgid "Deprecated since version %s" msgstr "Elavult a(z) %s verzió óta" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:71 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:82 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Sablonparaméterek" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Dob" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "osztály" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (osztály)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumentum" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Dob" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Visszatérési érték" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Visszatérés típusa" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "függvény" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "osztály" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribútum" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Változók" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktíva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Kivétel" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (szerepkör)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktíva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "szerepkör" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Paraméterek" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "tag" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "változó" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makró" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enumeráció" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerátor" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "típus" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Sablonparaméterek" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "kivétel" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (elavult)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktíva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (szerepkör)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktíva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "szerepkör" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Változók" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Kivétel" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "környezeti változó; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "szójegyzék" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "nyelvtani jel" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "referencia cimke" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "környezeti változó" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "program opció" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modulok" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Keresés" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2328,35 +2382,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "forrás mappa megváltozott" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2380,39 +2434,39 @@ msgstr "" msgid "Symbols" msgstr "Szimbólumok" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,7 +2476,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2434,149 +2488,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s nem mappa" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2600,24 +2654,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2628,32 +2682,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2663,7 +2717,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2673,27 +2727,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2701,7 +2755,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2711,173 +2765,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Tennivaló" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "eredeti bejegyzés" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modul forráskód" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s forráskódja

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Áttekintés: modul forráskód" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2885,112 +2944,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2998,25 +3057,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3090,99 +3149,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Figyelem" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Figyelem" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Veszély" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Hiba" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Tipp" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Fontos" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Megjegyzés" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Lásd még" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Javaslat" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Figyelem" @@ -3214,7 +3273,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Keresés" @@ -3347,34 +3406,22 @@ msgstr "Következő témakör" msgid "next chapter" msgstr "következő fejezet" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Kérem engedélyezze a JavaScriptet a kereső funkció\n használatához." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "keresés" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Keresési Eredmények" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "A keresése nem hozott eredményt. Ellenőrizze, a megadott kulcsszavakat és azt, hogy megfelelő számú kategória van-e kiválasztva." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Gyorskeresés" @@ -3411,20 +3458,30 @@ msgstr "C API változások" msgid "Other changes" msgstr "Egyéb változások" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Keresési Eredmények" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "A keresése nem hozott eredményt. Ellenőrizze, a megadott kulcsszavakat és azt, hogy megfelelő számú kategória van-e kiválasztva." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Keresés folyamatban" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Felkészülés a keresésre..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", " @@ -3445,30 +3502,30 @@ msgstr "Oldalsáv kinyitása" msgid "Contents" msgstr "Tartalom" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3480,13 +3537,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,90 +3570,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3619,27 +3676,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3656,13 +3713,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Lábjegyzetek" @@ -3681,20 +3738,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 3bf6ca876a11c5dc363d7782290413d37e82ba55..f779db64cf017de2238cd5e914bf9984454ddd02 100644 GIT binary patch delta 10103 zcmYM)33QFu-pBDLA|a7MLK2aXgUlfz5+X=QMS?4cRGSx3L#2jLG1PogLesS*jFbY?oIy{J)+ffX_%UBD4w%eaz zFm=CXmQ@?0&<|Uo1G7=@4Mn{-5xp4SDz_ha1AFtq7VL=biKfGB+kU8y$6^SUV?A7f zKDYxl!Gjov=P?o=;2sP~vaFVP8Z`lr=9X21@vQ&~T45-*zzEx3m_vOg2I6t#k9C#5 zG=M)3E0hU12*+U%euJ&>9y%~G*+e$mwg>vrUWiVG`Xve(IL3ZpE5=f)=CF$ZHZFO(+BvsW>Np*P}29 zHRCC^tFQ_6&rltIj|%ZUOh^AVCPH1&L47zXLh~>f7oj4%2{nN#tcEA>89Z&bJA>%0 zIt_71qFRZlj{4j6VpIg)#UNZ^`!OmaM^OX#wl$}q5vrbueK8BQMXPN0p(1b*3w8eQ zQqamew=#p7YzsQNUJjn1^ zY>Dc(-`}$T#r6lKs3csDipVDXAKZqDfKR5`ia_M9vFc-8%t5`^4;Atf)Id{Ex$r(J za+^^DA428U3Cwa*ctl|srgbnYUx!_&pFaY!JMO{%z`YbB+ z{ZWw^X1BkB5!9Wi@m8by`S=<3Um@H>gI+v=Iwlt}3~!^7(SuCWaq~wF*cUZ{p{NkQ zf(clL>Sq(OYu0Ymfd9oN=uN^X`4UkR?vPFVHGy0j)KP!?fuX3CPeiiRnvcqbTNsZW zJDaB8E8^Y9Ti zV|?pXHcA)H7HojmQAuO^`Gfsdm<-nM;=TA5dGb72Iba-|)H;y~1UQ&1CIib}HW*b%=*^)YgbTene3 z7S+epM`JqmN+gf1Tc}7Tkx+`zu;++>GKFn4$eZYgA*4cA@!JO+>9Y2ep8q7>JWG1Q!$%e??$D4Y62-?ePXG85*GO;$150(H93>o>m+Q0ZBYG=MNPEaNx?y39cm(nPy+9m<6F$ z8i(pdwV$XSHoX4G{B${W+g3A$Eqi4Ps>med%H;l#565_8=WR;i+6rt)JP;32Wm`WC2d=5d~iw!p53`<4`kCLq*_4)C5aW zkyviGe}~%JpHUr$jx#r8W7J+3pjJK~wc-yj5M8L8`yA`&{9m>k?xQ~+c#by@2BVTJ z4z>3^Q4x3vQ?LZ<;yTn;>_X+j736BLZlaPmcYXP;W8KbeN4E)CZzEF2-h9VSoM^>bPC8{R@MrH=1tRTVpWwLR7B2 zj5;lorW1cPtfWC9-he%E4>m+^K5v6@*cJz)ZnD*=EjosJ?=;rKo3>9;69_IdTi6u! zTo(+%e)zQ;Kkhpzyi1|W3tB{{(fas=sb>$QeLEp>2l&n1wn81*mKtg4&9gQ6Vfxo!{lC zi7p#$A6+ipdWHp3&fkFY@JzsUmA@kET{fqB>fcVIU>i$gGi zeNZIIQRjb&?N?ZXdbKyr)_9|ytAmVs{^pd#o*CHF#f>SEYNK^^Tzb$rnF zSJd7{E;PUQ>x{bbW}}YJa;%M?qWU?70r(ASi*BQiw?_quiV>*DRA4l2tRVgx_yi4^ z_$_LM^+^5BI1~eMGirbXs1+T-7I+Rdff|cUj?_ba9)%g$67{82ikk2O+ikYz77>5# z(PR6;>hGE)ia>2i9y)Lo`rwgSpeD2pWAPJ=!&|5o*Ir?s55+dr z<52?+K}BE`7VG>^up6$TE}~nQhIdh+jaq4Do`yOVT`>j=Q3Jh-b#X3gfYqo_e~7K| z0+wOGDzoy1m`D9<%>4WOuQum#Flq&}F&wvI9sCN*@H-5_L2Jy)CZj?+50!K)Q4y&` z<;pG$#=~~~5-RI|#7OjCOaD#^DHQxM7nKXoqgFluwW3l~WTv79n1Oo!4OA#sp>k&f zYQTM{_s*gwd<8YpN2vE|tTPu}2s-s(Duv#diJCwKYOj}}_PP=knVqPWUBgy*4>fS) zduCJ z5%rna7uRDXx_xLalxU2i-W9vx%NT=IsQ0d87FPeKN$MQb7M9@pC3dZ6CH*N2s?u*~>4ea)jIer(h9reI1=DVN=Y68QM z)8({YrO=s%MfL}mQ3E|h4fF?UVqRO#50UAZN4*4bFsQAGqC2 zFa@<`U9mkDqe8zPeRTdSDG&;4H!9>`VhWx`g|6lfb8}^5KK0k^`bF$OJ$$FR!uw+; z^^dRz{*0|LW0y(338-#TU?@I^b#V+f$JwX_?Lt3%xQG4srQlv=9tc2Xdlp7u4r*(P?fOzopuPt+ z@b{=B^x13f{2)|+*%*(#Q3FrMVBCU<_&I6;kMoh!)fTir8oeqkbJi4?>AfWg_D8?aR1cY&9!h8^)Sr9 zxtNN_P)Ya~hGWzLlWbY2NQ^)w=R$0NpQ1v41+|a|I2Z#yGe4k=M@8Csgn}-TFHslA ze^4(zL50Zwp!u;m79*(lK}}==YT_$Uk$E5c;deL_GY*-pIEXrSr%+k{9jf0SkS%fY z{b)J}K`%ZiK!vUd3vn_&i(jKw9{(@11v#jRj>PWxD(ZBcM4h6>pPT;TFqwKwRB{f* zXK*t5Y5e^Z+SBkAW?`)(X6AX=iF!X&j;zJTxCfiyWlTrwsEJTpjG;OVBk^riF6_i? zJcVf(e9ZLQ0|zj^^$vw$_z)GsqA$#s!(LQJj^ieD*{BtC!#o^-N%#@A#H*;#27YNw zKuw?%s-Gg%#Ajk#+=xyk%MA)zncG(;c_LBACkqp>1e@Vf?21QF6A3(FLK}^`Pzq5w z@)pM7R&?M+tdGB=CK!CujF)th_2Xj#qeb#PwzD*&ThLxC$hwTr1&zs~5 z#hSEtL7kF(Y>jWBPQ_95!fU9B+(AwBsa+5G#^g#o`qQ3)nn)fxbpHEN2%%vrR>yZx zp<0US=rAg4uc8L3_O1CJj(kuz+a%Nkm!L1M#pbvLJL5If0%IT@s+?_(;){o5q%0Bk_L92MDh zsOL6f1YSd@gMxLr!8h zVYvNIFehYC%1N8FE4R(Pf2X<%Ab8Ew4(Kz zZmz9sCIq@lTorB=B|HA8xVSUS6~1dygzL=tKiypIFD!JcXmY8OYtNF*Ou#5IU;#x} zR-#zIhM>Ek6tjychzctpWkp0(6mSs>prWp2clGN1{pY-j_uly4=lh^Zaj)b_z%>8gZdlC zp$0C;6pUa;ybD|4TGRrc#WdWFJ@6Dhj|sV!buqqzTEMrM!2DKRp4nj{@~_p}u?S1( zhcOwqA@5j!Lrw5ADwJshEUOIN*dF)bU_6dCwqsUBc97$6Y(;-8MiuHAGz!t>Jn$H1 z(qHHJCZ^N>5jis}ZJ;@#+1Qf48@pi$hvL1cqdSNR_z%>=en9@Uk_MTDjUGh&H9#d7 z+F&hq!o}DXA4e_l71R#)p$0zU_;2h&-)6f?u0qt2%|+$Z?=cBCVH4bm&G0o;1dj|R z{%U;5g=??{qqN2v?1eX>l5Y(b<2qEx&*SAdle>y4xi?Kc4<+vIZk*%l+{tHzFNtc>_I?kp) z0ChxnJ3ftyz&@O*`hTB>b~c!=ghD?9NnEQ6byh1;D}EBSx&A5gNwB^}C3W}VX54X@r23!kT=1eEh@g(-VN_CXK}Bc}&cXwzi1fb998EUz zF|!6?J1j%JHxG3Lx1+{gfy#}SP?6k=&7w3;&``3S!4cS|$g;dxii*UGI2OM|l}|no zb;W?=GEAYr(Qyyf(Laegnwf-8$ybA#cs^=@%Q33ZJwZdE+l0yZveSPPyVL&=dtd?w zt^u=9?_Gu}tMRA-r=pI`gG$;U>L{*9MdDWH`f}6;9x5jOn(zfKXrP0r5FSCjcm}od zZ!rxUbKpu&8!yMcs0rty7O)5v;^o*6SE9z*gB-v0CThOq(Pm>kM-zW#<5(_e#j{Zh zC`S!+J?j1<)XwXXthJs(6YZ8vcAl{3LKzx*g z?M9;~W?%{Sz-!UQW$3|8s0lm#&ax)pbvPAYMn$4M|LKV?)WAzn<@Xfo2pf$fVX-%= zKM@(yiiVvVFQOLm5mI4R!g%vZ9fgVXZ$dXN!Rh!J&c$L@(*(C+BixCNaW~qyAN4`{ z40VK!CYp_QMaGR9Dp55&5!BJk+iTjU_0iwzN5j<6RSA~s-2ER4Kx#Vrsa4I-ho~4 zET&`AD@@t;b{vA*c?tHyQdBP8fT{Q>>iy?Y3w|4;N|vu_6k+l-lVnp-5!i^D=s0%9 zAF&;#k^st;9OMU@H3@Zecc6B@4BO%=)DdjLA-EL>$q87Z#=^sSBcN$YMh0@UdyxGKGA(_C1 zj_5<}_%_rI)?hMj#T49+iol1MiT^}ZOSdacPRzm9^n;j-3sKdu88z`1?2m`A6I#)$ z%m*Y5b!MYcXJ3Pt;5<~aZN@IR6K(tewUD^0%~5qgEwC6Bfh#c&!`K(sVtYJ<%Knd0 z3yhwpp^5D|=1W(C+SyFhPHx7|xZH6gDk%@32fxP0amF>~2>y-QaetS2e<04JUyQ@> z5zN73n9lrGVwnkjCide-5o!T7s54!GJZSAl9m!ct!=I2eu{xDo79T+?jGA}{YJt13 z8JKoJ%C%Vl%8JMd2pFpE4H>yyfza59-a^xdt?Z;Y7WxGkZ43!g)qdqu)MxEt0 z)DaxTBK!iifZPhRfnlg*pM|==20Jmo^)U^dMO>vhy8)s_5tch&Y(j0 zFVsRZt4ySZVN3c!)Q4vQUX1IV>nE{*{^zJ8?dK)_y=jc0k%>Xniw|Nq+>HwTr>Kx8 zTx)jP9W_uP>d5A!Ht!qljT!$*FyHRDf1GVsXP}T4~_QFr8Tau`&G!Y6Eqchl^1g+lnLbCoI9Dkg1M4P?3sm zq@jskbNn2$=qH8EP75)c{w!3E+>TnvW^9Jvq27;+nEO3Z{R!9#L(cU@sPbEfTJSEU z%A(d@8a5Z=sIf_yfr>~NRaPrdFK)((xDVT5r@7{P&>x%9ABk;n9QMSkuqEDtTF5=9 zjXj2n)IrQt{U4*DP&JxoZj43cz%3@zL=(oPv%aKZVMT_}`oAYK@9SXC%^5 ztAs`p7sjK?WDYjR0P1LNM1^!2s=lAZmiQcY!&jZ_pP=6RCu+jRtX?_N3Ttp6Dw3;F zBgG>Hk7O({sv7Oi$4`MbR zcC_v>zq;jMGV@!v(9qegK$XeMcsZUxH}+j_R=f=LeR#t09aJu~tT#u~9<{S{)B*<7KD^C*gRUkGZ%HHQ*1Z?2o_C{JB02 z6`?8E68(2OWPxoo)XW=2x=G*pB`^*d3q5Hn=inpRB*pJ%L zVa&r1Pzy+Y(Bw#W)css6#6s+ZH=!2%fa7+@4^T(cIQo!zur(@)`eIj{i8j`ulJFr^ z=$=Al`EJw#593An5l+TWQ4z>rX>wv3_NPAwl`G3o8@?a4vFO`0+S53Jn)n+mz;>%l zNT;ACbYmwBVhHa<9nnu{qy4a1P!THRQ&Dxk7j-oMz#@!)#Du;CC#n7?)3CX*8gIZ| zI28*YH9N0Ih59j6$Tp)Ev>h{XFZRK&P(QBI9y1H+fqHKUUV>vV8*fIP{U%IM{l7q? zk_$Uy7g+V}dBs!CR1Z(NI-_#i4tkD?|xhYJ0-I0SpHru6VC zEW#5wf%z@_33Da^%%Hy!wWGt>8Gl4&Z|WK|KsKh(-+rp$}f$_K(HNoFd&mY4CJd4VuudxF* zebT(w6}8|#sD&1x-Yb2Q_;;aE?mV~%OX=T~1Gi5T}s^BtIsI*Lb8S-cZ9@aJe_yFZy9 zE`w0-&BnR79`#o6@0N;qxxSB@Mdh@H(V>pZc_jox@dD?s#AHi<) zU&q<_6>7lo&zKKP2z%0Bfn#wy_Qoa~%zHUFg8n2_QrBa1j2@ujrtuDHAq5*v8LmQw zE@hMXd%bjQOg{s4WW7uqkfAX800nqJ5Z!M^WFAMw??f5w+53#B*UV zF2GAM7q?*=eui2|(`U^=_^XALB2%}1>bu_f%1E@1Sg$4LC>SzjHFgqWKTF4~Sk+^XnR-;1t7#87ioPu4q znSKZ_qyJ}|gx}(D9KD_TSNSa7ZqDW?4yE7fMKe(e4yHdFlW{rPxE8zOZoC9P#x7{@ zFxg({cnx;s`pu}wu5|i4Q5$)02k}p(ah?n9F!3dGw&|!HO~h7s7q-Ne&iy~3s^J)R z#gnL``Pu2`y=?yEG#NGVO{gSYgZ=Rt)Og3EH2Tswhf1mrub59~3Fgqh8nuJpV+uZr zI{O`{=fA;p?77ncg@G_1M5lU!WG!YOh)NKvZNd#VfH6Z_&^H zqcn6DvtBdhR)z6;05xzFJKzJT0XAYHeuj$NcQ_N1_wg6e=tJ#%C-%UTsD(D(Z+^C< zqN<}3n=rri0u2rL3hINhAC;Xy;YdtAV9szF7SQ+L2z&yy@Q<+=zd_~5B?nEUCS!N{ z5zNO2FdN^*-Wc~cHm4Q#p`m1$fTOSqb>s0q>(0^c`yDX@|}4Y{OCYeIqId9(4NK zu`m5&*bn31G&{`0-_f6gTF5#afICp%ldn)Yl6i#q_n|T7h{^sCcA{U8TG$5EgnLjs zJL}y45|imSf6IK?(lLSl9BhJ>s1WDsco-*P#@nV!!k9<@Ra6AO$6W0Ej`@y^$HDaHqmr`$hhp>)jf-g{zH35V zfF0=9VK4jxDniepLj8AahAobnI!?j%^ovnDoP|o-Yp^G-!BX6ZdM^DvbJPQ|qw0SG zjmg}oL_P34DzvYoB5(?u<5^Vpe&_Uiyl;Le<>D}|7oeW2LoNI^9D`3g*S|$2Vcc=^ zDbB+J)qg&XA>6ngQ*aZi9QUFYau`$bBd7l}wxyqZ!h8vPVGH_$(Z-ReaopG#=c6LG z2sO^rsN~*_iOg@ErQySGFdbbd%?cM{OZs=9&hma7jeAi$Z2f`Box#|Y{zBCIcc3Eq zN7RmYU?zTnO6HWmn-5k#M)e`Nmxe<4HfqAQr%V=iLk*mXI?FuNfYUJtm!Kxxf?Cj9 zxEX)M2HfzWd9LiV@g7X#`pY;G51%If8X)5%Q@=&1mDZppSb>%JDk@vEKQ=#PDzFFr zRoDez!NzzJ_1tOfid{Z2M^b?C^smN2=tfoDL!U%VNKSJ>6DE9W%4jfZ;40MFEk>Q` zX4F}~hN_CAsH3sYm`LTJ?&o6#mSAVxfJ)x|Sc3n;QCKwgteJ2LCUW6ti8}Qpb!}S$~Lps>u+VU#9Jm9bJ zR@!r2zFJQ{w;CQQJd;%5^M)gKpu!FZJ>}jCZ@FFJ^?AZ}Bw&X;WwlUT?bt%;^tAw8)5y9q9EOyR_OH40_x-_2(y_o?!=F zAqMgI?0Mcul|8`@h63fDaF{peRe3@lI~WLuy=6X+of+GV%V+j#XJ~;Lyyf%RVNZlN z*yPxQ-#4X4swbq2wP9X%dn#PDzDT}Z6{+#{Y4~)Ct8=b5k{$GxSJ&A! z0k>S1N+MRlI{YlEp(L<2ZmJ!r^3-^2zpIAm^$gh+%;&Z< ze|bE1H%G@ZypQD%{Ku!WI8HX_jW9x49fLHS3C@eVyduDQt2}nOtGtRk9{*f#DB!R0 z_*oEBxC7;pkjLZ1|H6(YUNLpj6;q4HPU)ZHJQD6xKPxmd(M3RGL99<2*LHxNsYT@k z>-y-leSvb9roS*um<`#kuw6RwiYX&UFs)y@WEx0>V zd67Lm%dYl#f_7yjYv9oO>W?A)Q*c|+{Hf%$`mHoU#CCa%$d zoVTF_PWYk-fEZM zzLx*0*4&)CKT^x3`lO9R8cjui;9r--YJ6^6V ztI{1C=6}>>Y#%kA8iua+`nAYR6S7zsC{U*~UAo0GJP}t=%?X^~Zz|Msg6H*D1Z+M^ z_478j>=pYsQMOJXD{K9+Q7&YuDc@T*-_Z3^RV|0*6tQZm(iPD}3a<_#%o<(4)Gu3( z4O+$N`YY=nexpZ&{l5s~$kN18?eN!)akO3^`ECbw_7O_Jf1%#3STz3s zXZ1)%!;BNvjdHJb5$)KSxctFb6l3*b)>7^Ad9(PQ`0HF0JO`9rT)*@0E3=)PQ_b`C cwY9NB4ZGMf*<@;zZN!e-, 2023\n" "Language-Team: Indonesian (http://app.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -43,104 +43,104 @@ msgstr "Direktori sumber dan direktori tujuan tidak boleh sama" msgid "Running Sphinx v%s" msgstr "Menjalankan Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "membuat direktori keluaran" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "saat menyiapkan ekstensi %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python callable. Silakan modifikasi definisinya untuk membuatnya menjadi fungsi callable. Hal ini diperlukan guna conf.py berjalan sebagai ekstensi Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "selesai" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, 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:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, 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:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,70 +161,75 @@ 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:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "tidak dapat menulis ulang pengaturan direktori konfigurasi %r, mengabaikan (gunakan %r untuk mengatur elemen-elemen satuan)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nomor %r yang salah untuk konfigurasi nilai %r, mengabaikan" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tidak didukung, mengabaikan" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Tidak terdapat nilai konfigurasi demikian: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ada kesalahan sintaksis dalam file konfigurasi Anda: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,291 +237,328 @@ msgid "" "%s" msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Nilai konfigurasi `source_suffix 'mengharapkan sebuah string, daftar string, atau kamus. Tetapi `%r' diberikan." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Nilai konfigurasi `{name}' memiliki tipe `{current.__name__}'; diharapkan {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r tidak ditemukan, diabaikan." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Event %r sudah ada" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nama event tidak dikenal: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "Ekstensi %s diperlukan oleh pengaturan needs_extensions, tapi itu tidak dimuat." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Proyek ini memerlukan ekstensi %s sedikitnya pada versi %s dan maka itu tidak bisa dibangun dengan versi yang dimuat (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Nama Pygments lexer %r tidak diketahui" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Class Builder %s tidak punya atribut \"name\"" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r sudah ada (di modul %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Nama Builder %s todal terdaftar atau tersedia melalui entry point" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Nama Builder %s tidak terdaftar" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domain %s telah terdaftar" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domain %s belum didaftarkan" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Pengarahan %r sudah terdaftar di domain %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Peran %r sudah terdaftar di domain %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Indeks %r sudah terdaftar ke domain %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "object_type %r telah didaftarkan" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "crossref_type %r telah didaftarkan" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r telah didaftarkan" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser untuk %r telah didaftarkan" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Parser sumber untuk %s tidak terdaftar" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Penerjemah untuk %r sudah ada" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs untuk add_node() harus berupa (visit, depart) function tuple: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r telah terdaftar" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "ekstensi %r telah digabungkan dengan Sphinx sejak versi %s; ekstensi diabaikan." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Eksepsi orisinal:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Tidak dapat mengimpor ekstensi %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "ekstensi %r tidak memiliki fungsi setup(); apa itu benar-benar sebuah modul ekstensi Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Ekstensi %s yang digunakan proyek ini memerlukan sedikitnya Sphinx v%s; maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "ekstensi %r mengembalikan objek yang tidak didukung dari fungsi setup() nya; seharusnya mengembalikan None atau dictionary metadata" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "nomor PEP %s tidak valid" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "nomor RFC tidak valid %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "tema %r tidak memiliki pengaturan \"tema\"" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "tema %r tidak memiliki pengaturan \"inherit\"" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "tema berjudul %r tidak ditemukan, inherited oleh %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "pengaturan %s.%s terjadi pada tak satupun konfigurasi tema yang dicari" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "opsi tema yang tidak didukung %r diberikan" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "berkas %r pada path tema merupakan berkas zip yang tidak valid atau tidak berisi tema" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "tema bernama %r tidak ditemukan (kehilangan theme.conf?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -532,8 +574,8 @@ msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" msgid "building [mo]: " msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "menulis keluaran... " @@ -582,7 +624,7 @@ msgstr "%d berkas sumber diberikan di command line" msgid "targets for %d source files that are out of date" msgstr "target untuk %d berkas sumber yang telah usang" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "membangun [%s]: " @@ -591,50 +633,50 @@ msgstr "membangun [%s]: " msgid "looking for now-outdated files... " msgstr "mencari berkas yang kini-usang... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d ditemukan" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "tidak ditemukan apapun" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "lingkungan pengawetan" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "memeriksa konsistensi" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "tidak ada target yang usang." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "memperbarui lingkungan:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s ditambahkan, %s diubah, %s dihapus" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "membaca sumber... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "menyiapkan dokumen" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -643,36 +685,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "entri ToC ganda ditemukan: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "menyalin gambar... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format 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:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "tidak dapat menyalin berkas gambar %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "tidak dapat menulis berkas gambar %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow tidak ditemukan - menyalin berkas gambar" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -680,470 +722,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype yang tidak dikenal untuk %s, mengabaikan" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "menulis %s berkas..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Berkas tinjauan berada di %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "tidak ada pengubahan dalam versi %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "menulis berkas ringkasan..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Modul Internal" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Level Modul" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "menyalin berkas sumber..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "tidak dapat membaca %r untuk pembuatan changelog" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "Builder contoh tidak menghasilkan berkas apapun." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Berkas ePub berada di %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "nilai conf \"epub_language\" (atau \"language\") tidak seharsunya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "nilai conf \"epub_uid\" harus berupa XML NAME untuk EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "nilai conf \"epub_title\" (atau \"html_title\") tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "nilai conf \"epub_author\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "nilai conf \"epub_contributor\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "nilai conf \"epub_description\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "nilai conf \"epub_publisher\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "nilai conf \"epub_copyright\" (atau \"copyright\") tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalog pesan berada di %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "target untuk %d berkas templat" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "membaca templat... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "menulis katalog pesan... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "tautan rusak: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Halaman manual berada di %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 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:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "penulisan" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" nilai konfigurasi mengacu pada dokumen tidak diketahui %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "merakit dokumen tunggal" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "menulis file tambahan" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Berkas Texinfo berada di %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nJalankan 'make' di direktori tersebut untuk menjalankannya melalui makeinfo\n(gunakan 'make info' di sini untuk melakukannya secara otomatis)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "tidak ditemukan nilai konfigurasi \"texinfo_documents\"; dokumen tidak akan ditulis" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format 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:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "memroses %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "memecahkan referensi..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (dalam " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "menyalin berkas pendukung Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "kesalahan menulis berkas Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Berkas teks berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "kesalahan menulis berkas %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Berkas XML berada di %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Berkas pseudo-XML berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "berkas info build rusak: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks Umum" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "berikut" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "menghasilkan indeks" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "menulis halaman tambahan" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "menyalin berkas yang dapat diunduh... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "menyalin file statis" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "tidak dapat menyalin berkas statik %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, 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:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "menyisihkan persediaan obyek" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 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:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entri html_extra_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "berkas favicon %r tidak ada" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Dokumentasi %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Berkas LaTeX berada di %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 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:158 +#: sphinx/builders/latex/__init__.py:160 #, 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:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Rilis" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, 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:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "menyalin berkas pendukung TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "menyalin berkas pendukung TeX... " -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1158,15 +1200,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "Gagal mendapatkan docname!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1225,8 +1267,8 @@ msgstr "Laporan bug dapat diisi pada tracker di ." msgstr "" @@ -1258,257 +1300,264 @@ msgid "path to output directory" msgstr "path ke direktori output" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "daftar berkas spesifik yang dibuat ulang. Diabaikan jika -a ditentukan" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "opsi umum" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "builder yang digunakan (default: html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "tulis semua berkas (default: hanya tulis berkas yang baru dan diubah)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "jangan pakai saved environment, selalu baca semua berkas" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "path untuk the cached environment dan berkas doctree (default: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "build secara parallel dengan N processes jika memungkinkan (nilai spesial \"auto\" akan menetapkan N ke cpu-count)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "path tempat berkas konfigurasi (conf.py) berada (default: sama seperti SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "jalankan tanpa berkas sama sekali, hanya opsi -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "override sebuah aturan di berkas konfigurasi" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "masukkan sebuah nilai ke templat HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: masukkan blok \"only\" dengan TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "mode nit-picky, ingatkan tentang semua referensi yang hilang" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "opsi output konsol" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "tingkatkan verbosity (dapat diulang)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "tanpa output pada stdout, hanya peringatan pada stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "tanpa output sama sekali, peringatan sekalipun" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "siarkan output berwarna (default: auto-detect)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "jangan siarkan output berwarna (default: auto-detect)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "tulis peringatan (dan galat) pada berkas terpilih" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "ubah peringatan menjadi galat" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "dengan -W, lanjutkan saat mendapat peringatan" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "tampilkan traceback penuh pada eksepsi" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "jalankan Pdb pada eksepsi" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "tidak dapat menggabungkan opsi -a dan nama berkas" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "tidak dapat membuka berkas peringatan %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "argumen opsi -D harus dalam bentuk name=value" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "argumen opsi -A harus dalam bentuk name=value" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "masukkan docstrings secara otomatis dari modules" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "uji snippet kode secara otomatis pada blok doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "tautkan antara dokumentasi Sphinx dari berbagai proyek" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "tulis entri \"todo\" yang dapat ditampilan atau disembunyikan dalam build" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "periksa coverage dokumentasi" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "masukkan math, yang dirender sebagai gambar PNG atau SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "masukkan math, yang dirender di perambah sebagai gambar PNG atau SVG" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "inklusi bersyarat untuk isi berdasarkan nilai konfig" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "masukkan tautan ke sumber kode untuk objek Python yang terdokumentasi" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "buat berkas .nojekyll untuk menerbitkannya di halaman GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Mohon masukkan nama path yang sah." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Mohon masukan teks." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Mohon masukkan satu dari %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Mohon ketik salah satu dari 'y' atau 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Mohon masukkan satu suffiks berkas, contohnya '.rst' atau '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Selamat datang ke alat quickstart Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Silakan masukkan nilai untuk pengaturan berikut (cukup tekan Enter to\nmenerima nilai bawaan, jika diberikan dalam tanda kurung)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Masukkan jalur root untuk dokumentasi." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Root path dokumentasi" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Galat: berkas conf.py telah ditemukan dalam root path terpilih." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart tidak akan menulis ulang proyek Sphinx yang ada." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Silakan masukkan root path baru (atau tekan Enter untuk keluar)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Pisahkan direktori source dan build (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Nama prefiks untuk dir templat dan static" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "Nama proyek akan muncul di beberapa tempat dalam dokumentasi yang dibuat." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Nama proyek" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Nama(-nama) pembuat" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1517,15 +1566,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Versi proyek" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Rilis proyek" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1535,21 +1584,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Bahasa proyek" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Akhiran berkas sumber" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1557,91 +1606,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Nama dokumen master Anda (tanpa akhiran)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Kesalahan: file master %s telah ditemukan di jalur utama yang dipilih." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart tidak akan menimpa berkas yang sudah ada." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Silakan masukkan nama file baru, atau ganti nama file yang ada dan tekan Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Tunjukkan ekstensi Sphinx berikut mana yang harus diaktifkan:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Catatan: imgmath dan mathjax tidak dapat diaktifkan secara bersamaan. imgmath telah diubah tidak pilih." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Buat Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Buat berkas perintah Windows? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Membuat file %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "File %s sudah ada, lewati." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Selesai: Struktur direktori awal telah dibuat." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "di mana \"pembangun\" adalah salah satu pembangun yang didukung, mis. html, lateks, atau periksa tautan." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1651,135 +1700,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nHasilkan file yang diperlukan untuk proyek Sphinx. \n\nsphinx-quickstart adalah alat interaktif yang menanyakan beberapa pertanyaan tentang proyek Anda \ndan kemudian menghasilkan direktori dokumentasi lengkap dan contoh \nMakefile untuk digunakan dengan sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "mode diam" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "root proyek" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Opsi struktur" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "jika ditentukan, pisahkan direktori sumber dan pembangunan" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "pengganti dot di _templates dll." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Opsi dasar proyek" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "nama proyek" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "nama penulis" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "versi proyek" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "rilis proyek" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "bahasa dokumen" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "akhiran berkas sumber" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "nama dokumen utama" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "gunakan epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Opsi ekstensi" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "aktifkan ekstensi %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "aktifkan ekstensi berubah-ubah" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Pembuatan Makefile dan Batchfile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "buat makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "jangan membuat makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "buat batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "jangan membuat batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "gunakan mode-make untuk Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "jangan gunakan make-mode untuk Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Membuat templat proyek" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "direktori templat untuk berkas templat" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "mendefinisikan variabel templat" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\" ditentukan, tetapi tidak ada \"project\" atau \"author\" yang ditentukan." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Kesalahan: jalur yang ditentukan bukan direktori, atau file sphinx sudah ada." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart hanya menghasilkan direktori kosong. Silakan tentukan jalur utama baru." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Variabel templat tidak valid: %s" @@ -1830,47 +1879,47 @@ msgstr "Tidak dapat menggunakan \"lineno-match\" dengan rangkaian \"baris\" yang msgid "Line spec %r: no lines pulled from include file %r" msgstr "Spesifikasi baris %r: tidak ada baris yang ditarik dari berkas %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree berisi referensi ke dokumen yang dikecualikan %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree berisi referensi ke dokumen yang tidak ada %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Penyusun bagian:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Penyusun modul: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Penulis kode:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Penyusun: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1885,82 +1934,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parameter" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "Nilai kembalian" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Kembali" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Return type" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "anggota" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabel" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "fungsi" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "struct" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "union" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipe" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Baru pada versi %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1972,346 +1949,423 @@ msgstr "Berubah pada versi %s" msgid "Deprecated since version %s" msgstr "Ditinggalkan sejak versi %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "kutipan rangkap %s, contoh lain dalam %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Kutipan [%s] tidak dirujuk." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parameter Templat" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Throws" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "class" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "konsep" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumen" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Throws" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Kembali" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Return type" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "fungsi" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "class" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variabel" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktif)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Raises" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (role)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktif" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "opsi-direktif" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "role" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parameter" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Nilai kembalian" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "anggota" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabel" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "struct" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "union" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipe" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parameter Templat" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "konsep" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "eksepsi" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "property" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, 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:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (obsolet)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktif)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (role)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktif" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "opsi-direktif" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variabel" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Raises" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variabel environment; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "opsi baris perintah" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "Daftar Istilah kata sulit harus didahului dengan baris kosong" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 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:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "Daftar istilah kata sulit tampaknya salah format, periksa indentasi" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "daftar istilah" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "token grammar" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "label referensi" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variabel environment" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opsi program" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokumen" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Indeks Modul" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pencarian Halaman" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "label rangkap %s, contoh lain dalam %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig dinonaktifkan. :numref: diabaikan." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "tautan tidak memiliki teks: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format tidak valid: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format tidak valid: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "label yang tidak ditentukan: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2328,35 +2382,35 @@ msgstr "konfigurasi berubah" msgid "extensions changed" msgstr "ekstensi berubah" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "membangun lingkungan bukan versi saat ini" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "direktori sumber telah berubah" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Lingkungan ini tidak kompatibel dengan pembangun yang dipilih, silakan pilih direktori doctree lain." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Gagal memindai dokumen dalam %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r tidak terdaftar" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "dokumen tidak termasuk dalam toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "totree referensikan sendiri ditemukan. Diabaikan" @@ -2380,39 +2434,39 @@ msgstr "tipe entri indeks tidak dikenal %r" msgid "Symbols" msgstr "Simbol" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "referensi toctree melingkar terdeteksi, mengabaikan: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree berisi referensi ke dokumen %r yang tidak memiliki judul: tidak ada tautan yang akan dihasilkan" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "berkas gambar tidak dapat dibaca: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "berkas gambar %s tidak dapat dibaca: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "berkas unduhan tidak dapat dibaca: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s sudah diberi nomor bagian (penomoran bersarang toctree?)" @@ -2422,7 +2476,7 @@ msgstr "%s sudah diberi nomor bagian (penomoran bersarang toctree?)" msgid "Would create file %s." msgstr "Akan membuat berkas %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2434,149 +2488,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nLihat secara rekursif dalam untuk modul dan paket Python dan buat \nsatu berkas reST dengan arahan automodule per paket di . \n\n dapat berupa pola berkas dan/atau direktori yang akan \ndikecualikan dari pembuatan. \n\nCatatan: Secara bawaan skrip ini tidak akan menimpa berkas yang sudah dibuat." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "jalur ke modul ke dokumen" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "Berkas gaya-fnmatch dan/atau pola direktori untuk dikecualikan dari pembuatan" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "direktori untuk menempatkan semua keluaran" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "kedalaman maksimum submodul untuk ditampilkan di TOC (bawaan: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "menimpa file yang ada" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ikuti tautan simbolik. Berdaya bila digabungkan dengan collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "operasikan skrip tanpa membuat file" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "letakkan dokumentasi untuk setiap modul di halamannya sendiri" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "termasuk modul \"_private\"" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "nama file daftar isi (bawaan: modul)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "jangan membuat berkas daftar isi" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "jangan membuat judul untuk paket modul/paket (mis. ketika docstrings sudah berisi hal tersebut)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "letakkan dokumentasi modul sebelum dokumentasi submodul" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "menafsirkan jalur modul sesuai dengan spesifikasi namespaces implisit PEP-0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "akhiran berkas (bawaan: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "menghasilkan proyek penuh dengan sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "menambahkan module_path ke sys.path, digunakan ketika --full diberikan" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "nama proyek (bawaan: nama modul utama)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "penulis-(penulis) proyek, digunakan ketika --full diberikan" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "versi proyek, digunakan ketika --full diberikan" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "rilis proyek, digunakan ketika --full diberikan, bawaan ke --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "opsi ekstensi" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s bukan direktori." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "regex tidak valid %r dalam %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Pengujian cakupan di sumber selesai, lihat hasilnya dalam %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "%r regex tidak valid di coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "modul %s tidak dapat diimpor: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2600,24 +2654,24 @@ msgstr "'%s' bukan opsi pyversion yang valid" msgid "invalid TestCode type" msgstr "tipe TestCode tidak valid" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Pengujian dokumen di sumber selesai, lihat hasil dalam %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "tidak ada kode/keluaran dalam blok %s pada %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "mengabaikan kode dokumen yang tidak valid: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== durasi membaca paling lambat =======================" @@ -2628,32 +2682,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Pengarahan Graphviz tidak dapat memiliki konten dan argumen nama berkas sekaligus" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Berkas Graphviz eksternal %r tidak ditemukan atau gagal dibaca" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Mengabaikan pengarahan \"graphviz\" tanpa konten." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "perintah dot %r tidak dapat dioperasikan (diperlukan untuk keluaran graphviz), periksa pengaturan graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2663,7 +2717,7 @@ msgid "" "%r" msgstr "dot keluar dengan kesalahan: \n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2673,27 +2727,27 @@ msgid "" "%r" msgstr "dot tidak menghasilkan berkas output: \n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format harus salah satu dari 'png', 'svg', tetapi %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "kode dot %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2701,7 +2755,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2711,173 +2765,178 @@ msgid "" "%r" msgstr "convert keluar dengan kesalahan: \n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Perintah LaTeX %r tidak dapat dioperasikan (diperlukan untuk tampilan matematika), periksa pengaturan imgmath_latex" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s perintah %r tidak dapat dioperasikan (diperlukan untuk tampilan matematika), periksa pengaturan imgmath_%s" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "tampilkan latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "inline latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "pengimpanan intersphinx telah dipindahkan: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "memuat penyimpanan intersphinx dari %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "mengalami beberapa masalah dengan beberapa inventaris, tetapi mereka memiliki alternatif berfungsi:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "gagal mencapai salah satu inventaris dengan masalah berikut:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(dalam %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "pengenal intersphinx %r bukan string. Diabaikan" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[sumber]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "Entri TODO ditemukan: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> terletak di %s, baris %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "entri asli" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "menyoroti kode modul..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Kode modul" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Kode sumber untuk %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Tinjauan: kode modul" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Semua modul dimana kode tersedia

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "tanda tangan tidak valid untuk outo %s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "kesalahan saat memformat argumen untuk %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2885,112 +2944,112 @@ msgid "" "explicit module name)" msgstr "tidak tahu modul mana yang akan diimpor untuk autodocumenting %r (coba letakkan pengarahan \"module\" atau \"currentmodule\" dalam dokumen, atau berikan nama modul yang eksplisit)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" dalam nama automodule tidak masuk akal" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "argumen tanda tangan atau anotasi kembalian diberikan untuk automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ harus berupa daftar string, bukan %r (dalam modul %s) -- mengabaikan __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut hilang %s dalam objek %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2998,26 +3057,26 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "gagal mengurai nama %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary menghasilkan file .rst secara internal. Tapi source_suffix Anda tidak mengandung .rst. Dilewati." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3090,99 +3149,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumen Kata Kunci" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Contoh" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Contoh-contoh" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Catatan" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Parameter lainnya" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Referensi" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Peringatkan" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Hasil" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Pehatian" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Hati-hati" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Bahaya" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Kesalahan" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Petunjuk" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Penting" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Catatan" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Lihat juga" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Peringatan" @@ -3214,7 +3273,7 @@ msgid "Table of Contents" msgstr "Daftar Isi" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Pencarian" @@ -3347,34 +3406,22 @@ msgstr "Topik berikutnya" msgid "next chapter" msgstr "bab berikutnya" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Tolong aktifkan JavaScript untuk melakukan pencarian.\n " -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Mencari beberapa kata hanya menunjukkan kecocokan yang mengandung\n    semua kata." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "pencarian" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Hasil Pencarian" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Pencarian cepat" @@ -3411,20 +3458,30 @@ msgstr "Perubahan API C" msgid "Other changes" msgstr "Perubahan lain" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Hasil Pencarian" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Pencarian" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Penyiapkan pencarian..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", di" @@ -3445,30 +3502,30 @@ msgstr "Buka sidebar" msgid "Contents" msgstr "Konten" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 kolom berdasarkan indeks ditemukan. Ini mungkin bug ekstensi yang Anda gunakan: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Catatan kaki [%s] tidak dirujuk." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Catatan kaki [#] tidak dirujuk." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3480,13 +3537,13 @@ msgid "" "{1}" msgstr "referensi yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 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:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,90 +3570,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Tidak dapat mengambil gambar jarak jauh: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Tidak dapat mengambil gambar jarak jauh: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Format gambar tidak dikenal: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "dilewati" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "gagal" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "tipe simpul tidak dikenal: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "kesalahan membaca: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "kesalahan menulis: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Format tanggal tidak valid. Kutip string dengan kutipan tunggal jika Anda ingin menampilkannya secara langsung: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree berisi ref ke berkas yang tidak ada %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "peran bawaan %s tidak ditemukan" @@ -3619,27 +3676,27 @@ msgstr "Tidak ada ID apa pun yang ditugaskan untuk simpul %s" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Tidak dapat memperoleh ukuran gambar. :scale: option diabaikan." @@ -3656,13 +3713,13 @@ msgstr ":maxdepth: terlalu besar, diabaikan." msgid "document title is not a single Text node" msgstr "judul dokumen bukan simpul Text tunggal" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 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:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Catatan kaki" @@ -3681,20 +3738,20 @@ msgstr "unit dimensi %s tidak valid. Diabaikan" msgid "unknown index entry type %s found" msgstr "entri indeks tidak diketahui ditemukan tipe %s" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[gambar: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[gambar]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "keterangan tidak di dalam gambar." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "tipe simpul tidak diterapkan: %r" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index e7df9026a1944b0cd15a71467cf85d7a7f4dd55e..cb66b27a15799440fc811ea00541dd61924cb2bd 100644 GIT binary patch delta 35 qcmdlcvQ1D!_A%SYncF@kO->) diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index d6090cc6fc1..35c3a11e8f0 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tryggvi Kalman , 2021\n" "Language-Team: Icelandic (http://app.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Kafli %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Mynd %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tafla %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listi %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Almennt yfirlit" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "yfirlit" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "næsta" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "fyrri" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Yfirlit" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Útgáfa" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Leitarsíða" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Athugið" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Aðgát" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Hætta" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Villa" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Ábending" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Mikilvægt" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Athugasemd" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Sjá einnig" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Ábending" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Aðvörun" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "Efnisyfirlit" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Leit" @@ -3342,34 +3401,22 @@ msgstr "Næsta efni" msgid "next chapter" msgstr "næsti kafli" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "leita" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Leitarniðurstöður" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Leitin bar ekki árangur. Vinsamlegast gangið úr skugga um að orðin séu rétt skrifuð og að þú hafir valið nægilega marga flokka." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Flýtileit" @@ -3406,20 +3453,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Leitarniðurstöður" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Leitin bar ekki árangur. Vinsamlegast gangið úr skugga um að orðin séu rétt skrifuð og að þú hafir valið nægilega marga flokka." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Leitar" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Undirbýr leit..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[mynd: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[mynd]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 03822e4cec010082a326bfd87e14c0ecac592844..71f07bd5f5800c7d0a2d70c20c5da2c138a902ee 100644 GIT binary patch delta 2880 zcmYM!Z%kHI9Ki8|B8I4dgpi100kIZ|@+=uCGiRG^2pKP6u3m^%&S@*=Ov`x8Z2hsU zR9?h=W(m~P;o30r1MZRuQzww%MZrnAgNtk!UueZM?si(Q`2Ip>~x&hPxrxwog` z*5c&Ar1Xx!-{<^K<^SC=*8czdXIuyqsNP0zWo3nMFXmzH9o zS*GI_V*;zu{wvW1t-~qIAKs+kM0?Nx_F)DdLb4wE(3PD+SMoF3{}<#6L;N^lT6XIB zOf++O=!6fT8LGiiSRd<+m`tZ(IRz(PiB8alM!r6}4IN-_^eDPzXV8@oAlJyU3^<47 zk=;;)wpXBAQ4`x2qWzZSkbetL(O@9Yp%Jgf3Vaz|=_hDFU1s{hhxWY(FuM)x8fR_u~9r^K;w~E zLIE0Z1v&CEo!UmiM8F*;!xzJm{= z&wYs_rylLsAM2N6{W==pAQoeCn1TZruv{OUfu4a%G!y+`GXVB+Xp#!ds z?XO~j`sP?af@Y`>xxy)ae0?t?&nLrQ6g;hW(19ki(Vl_n(MmL+N6>&CML$3d=n7tp z_uogq4;^SG_D6fr{=Kn2fG+4Nru+Wiq~O3q=pNr0xj~tz3@8sx^;9gwO0-`SdKOyI zQ{IkdW*Zv74!j3DW4#B>a4)*RQ<(4je}RGz-oTN)!7FJY45NYlNWRR#HFPDvq5ZNM z-S$Exd0`rIE<<&!KZa&xX>4yp1K)zawmZ=C7Yhmqg9AP=y-j1B}&>P#&p#lFomHaz#Cd<`4bmHPzFGt1>Rp_49 zN1KqOgr(?VT8jp>5xK&4emoNg(JeWSzRusHTX+%O+TkPxBhDZkC&)!pRfuM0COSYP zI^i;OPhY`u+<|V*F?5{sX#W9p#e=b)&R_;O8O`K_=+-4`D0ui5qY*!ernD7Z*>?1> zbfOvR!&*Fv4wzPw8mItE0|TQ0EkO_4Ds-F;(bv#<-cHq%;Ufw@up2!r$I!@+$9g}y z;!9{|hR}YQMCFRJ(e^2^J`0^-E;eF48o;i2e=i#N0i59b|22hYX*iE|tYw4Tn+0gS z5nXw6Y+r_^?s@zeUq@3~dSB|Ts6zYKp&3|&2HG5LMIH%jFq8Si2NZk_JJB<+AI(4y zdKgb*34Vue)et(t-_bPkZbq`ut;t3E)uVweK?8mo&2$_3{8mhwx(*6X)P*D812jda z(SQcf0j^>t-a@uNRFtJAUW6nsG@$)oh`xlx7}{ffPxLc1BL~aKzboyf!Bm}#9R^~D ztLXhftikm1RABSal{7_H;~461M7JUbKYWO8;X(9+brhZFB)Y&0<$T`KDcqpJlnj=4 xkIPyyrh8M)9~l!8l~sw#S&5R_)wQ$dbhj6*PaBD-{{vQv1Ec@| delta 2936 zcmYM!eQ4EH7{Kx4+?;Qlb6Hbo?Jm7jd~4G!=Pa%4MU6Hrr7+91)HIpq>loGrQ`0m< zG7U77SQZkPO)b#s4_QQ6Qi(6*4AcybluAvFwC{KKMC0y$&N;vH@|@?K-@W?K&g#_h z{LD83f7|)*!T-7}Yybas><~f@)g1IuA>N9`*beWF?bUb#^>Nr4pN;i;yovf6%)@sv z7k6VKgj8sv;DFP}CtT*si8DK<2j-#!lURVaV^^$3K4CgvE<7I#aRm;>26Vn7XyB(X zAJ1Yb{)2_A9|p3$8)+DWF8owm*lh9@jL87{RrCcH*|q3=#jLgvzhCK1~d?fB@9Ia z9)pg11ieF((1kb0=UY=0jBqzd<8S@~}1bM>A83_NzcA8i6kO0KS5cq2o@X z3!g>%U5fQ!NK<~m*^tNw7 z=lc*1U>A17y|I1>&2Tg3`2L@vKv3Z?bYKqQyI?;4)QZW`!2Tv*W}q#zxszP9Um4n7 zg{Jl{QQQ*FX!`O0Z(6hRPrnXi0^v;XWpWf2wX!MAt zpbO8zTW}ecV*@(hQ8d7xkv)cAaR_Gk`&&eziu~yW^e)t+0W3v#_!^GJH_-`C#P)O8 zk~zGM_8e~J9e5`?z8+aCEQ{@1kQX2{$M)ZQkbfiY$TnTLU$g>Uctos^Le>Zmqi0$h zU4SGhEJojs^=Lqwkx$skmv`cO^hi#iuk!`;2rs87c(#Q^VZ?pV1qP$3szNg}7Mh#sjs~_04R`~lO!Ws8oS+F!=>c@1(`X>) z(F|oI(*bowCn&-JSdLtSFa@)436jLH0^Pv2=niBL;geWDmgN1n!$}%U$ys!#7tvI; zD~SuD&x_FKeX$aUqk%0#H}Yz9D`rvuJlcf35aDa|NYA22{YOb6y-?_#o~RRM@*s(3 zq;K!WtL>l3>a-{^qc*W{>fCuVX4fW?^BNz|yU-?Q@PN|F0cArHW#v^Bm5mb%>RPoP jG_b7kaM#Ig3aS^(UN}2ZJ9XBq$^VU;>cAmI`?CK9-Gmct diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 780d728dc4a..d795eeb63f9 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://app.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: it\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -43,104 +43,104 @@ msgstr "La cartella sorgente e la cartella di destinazione non possono essere id msgid "Running Sphinx v%s" msgstr "Sto eseguendo Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Questo progetto necessita almeno di Sphinx v%s per cui non può essere creato con la versione attuale." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "sto creando la cartella di output" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "caricamento traduzioni [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "fatto" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,70 +161,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,290 +237,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "il primary_domain %r non è stato trovato, tralasciato." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -532,8 +574,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -582,7 +624,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -591,50 +633,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -643,36 +685,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -680,470 +722,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Al livello del modulo" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indice" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "successivo" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "precedente" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indice" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1158,15 +1200,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1225,8 +1267,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1258,7 +1300,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1266,249 +1310,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1517,15 +1566,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1535,21 +1584,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1557,91 +1606,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1651,135 +1700,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1830,47 +1879,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autore della sezione: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autore del codice: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autore: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1885,82 +1934,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametri" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Ritorna" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tipo di ritorno" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membro" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabile" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funzione" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumeratore" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipo" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nuovo nella versione %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1972,346 +1949,423 @@ msgstr "Cambiato nella versione %s" msgid "Deprecated since version %s" msgstr "Deprecato dalla versione %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:71 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:82 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parametri del modello" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Solleva" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "classe" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "concetto" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Solleva" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Ritorna" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipo di ritorno" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funzione" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "classe" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attributo" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modulo" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variabili" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direttiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Solleva" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (ruolo)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direttiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "ruolo" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametri" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membro" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabile" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumeratore" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipo" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parametri del modello" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concetto" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "eccezione" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (deprecato)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direttiva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (ruolo)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direttiva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "ruolo" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variabili" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Solleva" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variabile d'ambiente, %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "voce del glossario" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "elemento grammaticale" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "etichetta di riferimento" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opzione del programma" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Indice dei moduli" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2328,35 +2382,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2380,39 +2434,39 @@ msgstr "" msgid "Symbols" msgstr "Simboli" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,7 +2476,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2434,149 +2488,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2600,24 +2654,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2628,32 +2682,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2663,7 +2717,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2673,27 +2727,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[grafico: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[grafico]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2701,7 +2755,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2711,173 +2765,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[sorgente]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Da fare" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(L'<> si trova in %s, linea %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "riga originale" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documenti]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Codice del modulo" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Codice sorgente per %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Vista generale: codice del modulo" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Tutti i moduli di cui è disponibile il codice

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2885,112 +2944,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2998,25 +3057,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3090,99 +3149,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argomenti parole chiave" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Esempi" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Attenzione" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Attenzione" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Pericolo" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Errore" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Vedi anche" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Avvertimento" @@ -3214,7 +3273,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Cerca" @@ -3347,34 +3406,22 @@ msgstr "Argomento successivo" msgid "next chapter" msgstr "capitolo successivo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Attiva JavaScript per abilitare la funzione⏎\ndi ricerca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Risultati della ricerca" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Ricerca veloce" @@ -3411,20 +3458,30 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Risultati della ricerca" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Cerca" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Preparo la ricerca..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", in " @@ -3445,30 +3502,30 @@ msgstr "Espandi la barra laterale" msgid "Contents" msgstr "Contenuti" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3480,13 +3537,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,90 +3570,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3619,27 +3676,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3656,13 +3713,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Note a piè di pagina" @@ -3681,20 +3738,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[immagine: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[immagine]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 239d4d31c1be3fce1e6a6093a7d6287102daca7e..fe8da59eef4700679c258ed9befaa6ff0b06b042 100644 GIT binary patch delta 11449 zcmYM)2Y6LQ`p5A(AtXRT0wEzG2_c1qmW1?BLJK94UZl6sRFK{j7P){1BpO(yTBw2| zRSX7Qb_J2PMl2vGs7n)f0cC+js^b6qyK|oB@8h$ddFP%o^Ugcxo*Q@Hn#y0jRN3>d z5Z@Jse?IgvCK`VTQ}qA;yxGKOv`~&vUU44#3*D9oyljZd{pZsy`Za{Y(tU4j94x%@7)aI0H5E1y~^net|KKv&V9_zo%qkC4?czRj&USU~&~hU0q}g2&Lq@|o{x=thAp>{2wuRm4+p zBvx%{4F8(({Et$;1;g+dGD-6YMlIn$Y>gw`&o|_e|AusIqeFg! zG580z!DuQ)Ck{as)fkM!X~-na3RF#efy%&b)WCj6%EN?kw^%Gdo&OYS31(s>E^1Bw zHKUDm=tc)oYg>Wc@f7L?^%;%qjCFA`vI=GiYHg38iuOlTt(dmP_(2F(!#Ws+^Y5{#B-ho|C*5Y#;6whVhS!qw!GPcDz@|307Ds7Jm#VLhr97Iq+ConCg4rf z0K+=kC98}2ybadF*%+(+|2hq&e4l&3VN^;@C%b0hs2L@q4>m`}V)9TAmU-^y+t8PI zKV~|{9KuxMdj*$iAleIC%+ zn8jER2jjb_+NjJr$plpD+u=a$gK@Y6wd7x72KP7TXjH?Hu6Aa1Q7IaM6LCJ06mtUu zF{hioKzj@z?t|(djwv`E8{+Gz>wfC`h1-7ywF`WxaF0?}i^d>~K&56HYVBrWGS0`^ zq;w~S5+CkiFK`yC6JJB!@IF?-_?~tfHbD)b9VTH{RIN?Ju~^=d{PVqFVtW}wR!tw& zzFmXLzzNq|s3%uQZ);*21Nz6W>BVd=E9Vy{HQxK+WuHRHlAFEyYi$jNEYhAE74V_qe@r66$)*F%;W+ zXz0Ygs2PkvJt!t)ReTvK53>?=!;7c^{E8aTBh+s3?`yYf4C;EF@oDUbJj2XE)XbfJ zcEX{U!jgKL(WuD>PxQAlc@{&7=b>(}0`>V?tcCBPs`(JAW?}}|Z8!@vi8o<1%J11iB*xE*uxDr!mMhqJXX z8Asz$BpD{Th%Xj=0ky^tu@d@>un#6bj3o|0WhxnKbAMArBMP5EWndZVhUJ)t*O6?Q zCL`?ticv+k6t!Jfp|5D`L<_XgU8#oE<|OdJ8C-)Mt_`yn&C5;gS)UL{)~@d z`~>$E4qFg!!9w(0qM_6$PqZm}0+r&Ot`{(fICPSIG$)`kHUKr?NpAcy>TCHe)cOBL zWh9c#uH&*$ndyZQI0>1!$Gk{GGkFJ96#Fn7zd&W;XKaWMu@%;zVyk>41`|)iG<+U? zaS!UoA7N8GiCT(EQ|*H)29t;%!>ZihOs1g>%*GnH2Q|{e7>k!s1M!_^*Q^d|fCZ>b z499ewiH&g!s>n`a6}*By@fK>J?WfxTOvjqq|8LOH40oVrbQ+bipIs}>utgb*>@d>_ zH{f>6!tOKe%%4Y{{~`{=)uVoI635Gsv) z&T!+ksG>cI+AX)R7Dmjn&yi#tKwOBOaRX{;enB076RTnPZ1NvUBYw6WQ7-DnJzeKu z9pWvhZFCT;;zewRzhE~^{0oD_X;>4lUZ7#V7raWgaFbTDWC0HBxp&m3RuscT1wQD{WHGrw8B`HQ-cZJ)32$kt?Jv6G* z2xK717>Su!fa?DXw!+0&h(|FRYs|A>Rw<|f^+hewLR2yCLRJ3-)OBmlx6hN-7(-ly zQRwl|h@|lb>PF?LCAf{caO?tJBCwb17F5dr#NOELdHV!hkCllJqiUf7m63C(>!iM5 zOd}kQVYt}pG3(rp53nvDRG?;f1vLY|Vp{__sFC+XrG64>A1}l>+<_YSm#7;(#1u?i zXzhbKem-`@Ef}c%f1QT*?L*APq($~?co-_B^HHhViW=Y%H~tCZiOq|4<_W0cYJ^(b zcCIr~MZOJ_@Bp^Nf1@AwHwlYvl{Q9QFda3c$FUG+x}WdI1mYv;k5{n+-ok9mEwS+g zR8hZ=zW5Ie#Dl1re~I}R_7dw~Kw|)nL|l*BZbwizI`8WHvMr*9s7&-l-FOOWpygN% zzeAmO2^*q+sg2Vxi1=|-|0s;WmrKdNM!1;{?dPo+i2pr29}~GvKFi3Aq>J3n2Z-N5QCQ5fkZ7O|4K;*I`lyaHpW$`3m-&nrwUYU{DI0q z_FwIcd!hFE5L8u9LJh3gjbFoH;$5iY_M>Xx1gciEh6UO3vY>OLFHFF8IyRKmfda5k5BZ@-JJl~BcV1MG} z*cyL9WuVD&o7z#Rfla}x_$(^L3sBeDg=u&ewQB-a*aw7R;yXA5136l$AB#<}7>D6*%)lC}?Jj7Kif5so7u!)8t3YM?GG^mdjMDy(ea-IQ zJk*8rF$E{0mf%g)jSr%#{a>#75ugFaqxzen9!!H!wKD~^8)m!lTGY(n!JhaxjM4rN zc*DMcG{%<1qp=aLN3Gdss1r}1isv#$VBnk9M2sSCjT+D(jK;~R<4Um(zKy!h0Sw2J z=uzVujn5rkk=C%LKKzVc%T}z!x6^taK=d!z#Gll#Vl#alf9xGz&v5+~yK5%BYcn_p zGw5G{=kWs^h%2|+8Q;L^#O=1(pJe6R$iMb^$acF;vQabXh#hbQ*2lN80ajo`{2x}v z=pA;3@mQ0%B}QU5tcp)z08VxL=b|S38iwNT9pqmp9HFBTUT_Zx*l7<)z##gYp>AA& zFW_X)Jqi=X0G=)2pd z^b~3)Ro=HX5sKanU=RA^U8myn#0OE=?Nnyhd@AM>7o&>x7kvub?6 zcQo&ejEW<5G;q<=7f`V+!6tt!>QTY%OJ?uG<5(ghMbG zi_!c3zkw9dLI6h8cDN_QYN| z1UI6N{}aby*H7$EwY}(RMaM%Lov`^qyEgMMm-u6BgLkkG=6q_mWeJWV{t}yG<{_Jb z38?E#$9&v}srU$+V#;BA+)(U5Jo+%}uavz@hh|uYTKfa;foD)la~^do@`Xe{R?KFeVaTMx{RBxc$>g9L5lD$2hFOG59NLqJ6&LFK$@mp^-u3D3;;_ zoP;laX)kyWBZ-4}7$`H1T=OxLcrbRsrKkaX?|Ksl5&M5_Co~fMi09%nSnS50Kir1z z30rglxSmW*!ypa}{l;D(0Yiw}pl;Y3b-}e5i<>bRkDzXR8VfP~l>IZ@Z0twubJ`a9 zK%Aicf0jlX9~6FTo#na}mAdcoZT!QHH+^SkdIa^N@dIkf{Lk3_1k`!Wu|5uVork*5 zW;Z^K-tYg1G&HmDvvx*}QEQZrTKm>+|6sR&Bxdyqz(1jY~B+NpcxCujXn;Rd%c;chj6R%Ix2gj9S6w_-NNU$8YWz;zR<7;j)3 ztbfr~`)GWP_%lqw(U0tZ?0Xi}^(${rH~IEau;(j)^nYo zQ#AVHAl!j}#VY@`7kbTgz3V&p7@zON8h8(NqpCOT@vZSbaYvkpZEo^XgF7(=|9Z>5 zlzxn=Ezd<7!8Gn-0Q&#WR%b1&LL7_gZ-m8|jq7nAYOROdwvXmFQ5U>`Nq7evVBO#B zw_Zoo6LC0>#<`fQ{eOu@RXU>XSQD`&aZ~JxPvZ#uJ5I%zyVh5*HL>qKTNCY3H{6ST z@f_B{Y|^2)2S(s#td1XJ8}4sDr;$cS-~;`xodz>dUaI27+=2kdVg?|Z?U=+Oo4)5yY>j^lkmOh#RBA?n75 zFb1!nQdq^u@xGwMVSD1ms0<=HJKpd0C{%`?MvBPHz)rXWb)DO&rKs&^``cp}aS4vY^{9yj z_{INmp#mZ)tw7d5bBsNHfNSK<{^(ao!Bk3Wsd zT%Br;_di-?pa!(aLqn-w<9Y%$GXDU_`$HocYdO5>V0Zct2RhydOlWn-yWOHt52iHi zf%~u}1_aqm7GNsz0@UugPy-^*-sI~hTTjOoi1u|>c6Gvhc@kUf; zKE_#i9_Qkqns#ZP<}>#L z|47ICb2$<>(mx&ZFg(if{?K?FRV(vQ)%^i#sV<^!5D{%NRg60BEM{PEUAu(&sPm@a z5L}C%E;Js}=!OL`jv0X~a17qX!8nw!K=prw8hKQ#U7Gf&rRt1>a58qq3e@u>BF<)} zpX+#xrhfsdrq;!=|FuS6(4p=0J1T{p;vEx_B+&*u}UKQUys!8iS|arP>HGWMT?+=bK*n#+S)FazdGue)$J!)+iqei?N zHADTs1hlqUsMIgT7~JE=CsC=thdMqp)z0)u)Y8sIZMQ9`NA^kVi$5Z@<1v{{?TG_X zCzPTFvJX`YmrytU6ZJf(pJr#+1hvnbx$(28ffZvBZbEI#%IS8-QCLD;gv!u09IX9+ zkA_nCc!uNsL&Rv*mrprr0FjyY^BmOLcEY;&6zYZxQ3KwLy3TRbaX(@*{^`caSvCXR zu{Zq#Firb^8x8IAA5b%_lWo^37BzrHs8_JJTz8?CXdh|~tL4~Y&BNiu(@+nrlc**6 z1+@gRxprH2K|PumqesQ}35~gU7yIGNX0|4dqf%I_xgA&|*EH0Ob6tm{_VXgth09UZ zeI2!QSuGrM83($yX=#@vF^~PPY8;nmZ?p@i5+6oA!J4(Q52gt?k9Z&IRV=Ty~Yf9q(Vw8lbj$N?VV8kPM?kRlE+Bva{F~gWB0O z9E|mdUqr3l7Sz%_#9A1hZe|_8L{5jN8m7tD)A5FD_F%!p39Wi}O zZ11ww$qnO|o#>ubRQC9Ti>rUCwvFSd`{`+)PS)=inW6Ro>zU7p)Sh~_#7WYb@ zvO}*lu3DD&Mnt7$p0%ZAIqOn=s%NF7Wu>HN#b#u-$jB|5vSExN-+Qd1bHjJlADx}Ud#iVKcKZAu2f3nx delta 13428 zcmaLd2Xs``+Q#uSK#)M_DRfQ{2!SMo&`YSHNe@*il7vaYki-;`=8!}}2O%m=1i1(b zf?$vixhfY#EFg;Qs^}0vDWZa0QStjfvyZxNS)YsLZ@>GTv(Mh|E;9+7UhH>hy`Sfc zS{0tM`0qqH%W8n5f))Ms-;xN+DsoxYQe4hGfl-!qjmw*(Evql}E8AFBHu1+XmX(f! z+FDjs+>d^E99!bsxD0P&EEcu1td5rDv5rv~K*g`v1N*kOtR^@Q{qY5?gs)&TJcR1# zSJ)WuVkkE1U|!f0YZLdwn)m?Lz;sl5bFd1|$J)H#Dy9%j#a7gfN3j~dhc= zgEi^48fu6(hT%vYfWi0-_QDb;zU3Iu$+UkjhH$+d*5UouU~x$L&sh z0uK;hMY3pZ>1;amDc(bT5tZ`m$gEg59h-Nttp3E~P%qwywQxUrm`3Xq1-n@Ra<3?kl-B*l6cZS-Sem6_&_(Wp#zK~3R6?2hry^%b$?zXcWR zsF2675ne;Bg#hl>gM(3vYBYvo5|RXK9%@Y-MP=Xus$*A?mOsn-6YR>nf7VSHzwQ>V1VmTH8>l(Er@t9d5SAkjNBV3RYcby?OPj3T~F`qX~NKof_eAMtPu(*7UgD{w#{gR}}zDLjGS;%BJsdHg<; zfwQRVzu-cw&b*ArHK?_5%dz%gllnGzKlObu6xXAsycA=2zx5u4%2;lQ8Cg|Sibh}t zK8$43I*$R^oRz5t+F}*#gQ_2fkvIWc;38DJC8#xU)QL|!*FQs#7E^^`W?M8wr7#K~ zz_zGVEyH{8NsPc}Fqjmd#6aTn!_D)zuqtuI5vBuysKptJ+LrxL9h!j6F=Yh#*Wz17 zMH-$#K1Zys@f;SIf!fFWQ5m`BSaqa1$s!&5;tZ}&#M<}~R>Lc(7vDkc`x>K6rb4kg zanvaCUyDL_r(y(Z^(J6boQG;~8!E*|u_B&AjqH6?!=Ir>b`_PW+o-Ae9hH$PqfLEX z)IdT}@9pKGpaw@_AdW{pn1vd_Y}CQA82xc8vc9a{s2Bc*>OiG2rbBg6yQc}Z!p^An z-1rbaj2w>E=co>N8jLj~ZjF)5=}4@}h5T`*$Hl0QtwW7?7wY-}RAx@0R`-{vHPe}( zB|eF5u@qb5kElg?FE>TuU}U*?tXUMYsCXNdnppOdw#h_nf*#aVY(g7Ppc^kEk61$| zn4|hdB-_@%P#GFB(Hz-pQ09Ihx^1ZK`U+~B?nkYSG7Q3>P#p=NmnX3{dYBgLa|(;F zBYD+>ucJEf9qNH9$z~DNLcOSw6E}C_7}VP6f}AN)0Mgr11>SM-ETx z0=B@Isbm|+PbL5Az~87)iua>ZbptzLMfQxQqzCH7W3U-c#>rTO>i8vWgnsGfU}@^u z4y#Zfhs|*~HpS^!7oYJ^Py>5WBm4jx<9FB#t4}kld;~@kzl3_xr`Q00Mhzf1!z|KP zsE!XoKPWKxOc0REKvs@mttO`~NEnYM@!RNy#|WjoGNoEXO)}5H<4SsF9Rm zE&LfnFd)ZdqA6;QJ7X*+Vh!Ag)p0jQ<7-$!`~L?Dnv2`m8f)g7spy3*i6@}uZa!)a z>_lZ?KdRv$P#rCwXAY=P3?%N2nzFH|4$ebmVm-FOJ=l`>TNfz=Va-R(HVVVx#L=jp z=A%0B3f9C=P$Rs88d2bMld-0by-$MHG*7Te*HN6i8B8hX^gaSHe2In7iK2}!!O zdk*WhKBp!_Qa3qFc25LJNp*r#=Ho~(Qg+Jgx45dBY_Yms&9jGaM6NB+* z)UK&9*PN8&JQONXu@$wNccG@_4OGKtQT65WO=^R%D)D_7f#a|(&U5MyU@Y+o9DsfW zW^D|`Fye<$9V$jmk>?l%t;TDp)!(?#G&~GLiD#om`YhJRBdC#mf_l+S)D*-#ZW^A1 zV~CeKUPPrlb{;?X;bLrxU!b4%fB7P_82oW47aF2^n2zDN9<@78IDYQi9BL>UUssJcb(B6>O#bUv+_bQD@YCO>$g;dY}~h;ziU^8nMuv3!Ske z@f2)=&tMBIMP=$Ts)H34nYan+zV67#tpp6={ZCHj6XC zF%{KdCTc`0aRBaduK$Mj5?5Ga&iob_M;wjqF%Lbe*iNA`-oOg@3kIOI)U1uFs0{SL z-Z&5Y>Mlc7}kqxMZwxMo( z*NJaqHRAeDnEIBeb6_N@bVD2kpE#6a;Q+s-$0#A zA7drFiZ$>SYNQocn(Y^X>PQ#V2nV7v_6VxOg{X|Z?5(cnr1rKf>C0&52!4nsXuqbzc~2t#m;hSP7_%%)oZ|7zSbqY9Mc7Mf6;! zkVN4YYTMlZl(~?DRfuO|7#3j{+=(`RgFUhG(`IoE!Un`6Q60)cb*Kf z6}xNyk6L9iP>fZ%a0=D4PtYIFqf-1Ws-ck8=6vXl+Fm)R5v@SIcpq}B^_FAe8k6cf zjuC53MknC}?f+Z~O8ptsNUxz93|ePSwyrpdI0a+yIJU>1ow)Tg=AcPLWiTI=`gN%L zHe!7|hkp12w!(j5r1pQ)_2z}~s2d+e?dK;Q_hJz7$4-15gNbWA>wI58?Ura%hDJH{ z9#lpapmxDJY=l=a9II>~|D7qcr_dEMQ5Ux3J@_H2fzMHMc?0WU$VOu{s>1_O9du&@ zoQ1k?H7X;!QSF?<5d6aNr;X(QZ5LbVIp(|^KSpn2p_J!GsLh;Y)GvL3g@Wf^WC!rz z+3lPKxcw!w-Dd7EDV>io)Gx*J_;rACAa2H3ypC-!;xL`m{+~oaXZJ4Dsy%|r$T`%50Y}Vtx-qC1uf_(r0lVX2jKp6s z5W|m}wbUKe?gOYPOu_2-1Zs_J#5~?_ZKKc)?NZ}J)LgE`L_C5@sr`4;k-?~V8LC4E zQ4PL^jqwz=!z=hA+OL^4@D^$+E}-rYd!770K%otVxwr&Vu<9G8fjra*wmI&@!NkX~ zKGr;eoT?uWy10#3jksQWAbgRl5F7W?4q7>gB;lmC7c;*Oh&#i+SIi9OJD!pway zj3a&ulkijQjNRWf8F&=cjt4cu;~0hhC(U=lPFRsR71d5A`s1FH9y7wDRA}x`p>Di@ zd3Xi&K*C#Qgj>*`_%Noqco7aFj(*!bHygDp3Z3{YY7u^lweWk?Vy^Ix`8Xfvp|FdF z(ordG_@4O|+!?jV7T{rg9;aaei6jsL;`ob*0_ z`+*N(40_(Du#|$|S<-^Vs0Pb_U{18UsLZr;9D;3$lTjmIi@N_Js>8oJaorEiFD_bR z81;)#1AGOQ;dgPm_Wy@Y#gKF6!YEAPhVi(O%)Eg*38#E)8py#~#LH0~*o12EI@)*( zt7GsdrUT7!0C7If$G30{#(%0s&-}kgL8)!|nK?>VJDzmBgGyzqfAY5*I0O~n#2^g* z+x~}0Al|v~AgZC6sI~Aosv|cs5Pxyv8t2Uc z6@tU5?}8fnV%&gRF%SEHWioRF+Yn#IG8dir+GNPOK>qcD;0q=t4N>t>$I%!{JOO9n zW5}Yh?qGY&E;DQ31;?AH#o6yB)WMO1 z>u?k1WA|@(IsVNkw+DwHoJQ@>O$CUBWKJq1Vi3!30brp68*U z2EN0N*zCIbl$(gXh@VHz)g^39>TcsA;*c9=mu$kPi7S6^GWQ&oCw{?+U&408C8+i; zqt;T(A52F){V8;yA`3_3R(t?|!zXaukEY>o9B(+@#(`YFi#2e-P4lArQB$}Kf5xXU z1DD_8=RUlPk$Cte+_Iw_fdo5B<-dSFM~jQ;pf$BWpN_y!Kgh+p{KAI`x9 z?C`7k7Z9r*tNdoZ7d(bJTt9+(ahtm)!}p^)@UmjwZ=Ix22OIxxegf)*J&60EMp}f? z7+|@4a~X@ZiL)Jxuqp9cR0m5@b6vyb@_kCiqt@6GY=f_(R{u@(eg6+F=konc#dsXY zh4(QATa|bD*2W~PPy7_BBfC-eeT~Xg*9tD*iPsm^k@2XhoQs|D2~>yP!dMLObNRmN z-RI}>_$szh(U%LCaUw=lbou6R2~HqBgK8k^9+QDA3?hCW)!-r2i+{#O*r<}rm(f^E zAs&PJ;&Bv}fpY#X-&eAB{vMN>iBxE0#g50&CccH5tKiBm-yB9`DDgP#f-_NHNM1#~ zxNa4f@5t?h!-$8YGPDu3wzgqE{2J9xxF^8O#URv$M^Pgy#i{rqYGggDx_sXe-Hw|u znEEfB_$O3@ZL7I_XZ&c?H=!)lHZ8#r{0+66f~vcG=Z2>dh0#>Jih7_*4U@W|IEpw0 z)uF@K4&QgYr>5yxH+-D>1g!1idjJk4zEjKPI|l|*sckqMb#S>+nYn@NDv#AO(4=xU zMsZ;uYP(!S?Sg7SF5mBThN2ebd?!AL?TLTH?ikMBNbC7j)N`v)i}oW_W`4vO7!>02 z9p%f>U;DpW9Wys|urfCcM;$!lu?D81QaA(S@eOQ&!F64}uV6h;C!QOXv2>h-uc3}+ zyPnD5KF4>k7WH1#zdx~lqM#$OLw%R;Aew^e$VqI8AD}w$JI=;|4P3s1s1ALAnxgV8%v7{NrEnJ7xC&X#)_&}TH&NTRL%7T8iQ`d=^cmE- z@tI?=r=>Y!N8ofWEWiM?TA8`6iaHr%QAcVa>P5w<1M5B1$F~(>7G+0NMkk}%c?#R& zCe-u5SS08@ywP;2I6)Y`a-6}A8Cb~359u?KOa6Hi0+bS6&5 zH5i0RrwCR_F<(qAP`lI1%;2 zS*X;mMK$y~>c00e0&hBTXg8CQKBy@if?AXtQRl%K)Ld7KHB%Xc>cDK&SG?7+?0*$D zQ=!GT3-$T@J8D(8>2AI#q@qr?H&H463NKeT#don#M!7G7ois4e$?Fl zhRR5VK`!6VjNzzH$2E8#zK+AO>R^{O6DMJB`~(?5lGR{{*+vnlj>MxDp~vxA)QFFu z7U`GR3V(C1hYvL!AAs5gsi>*UL*2iAXvx}E9hy|1Zl`6~kGQjQ(lRsbW;w<04Cxqb z=j0`&+DVxi$!RI}BMIqw?k-#^aSg3dCpJATC)dtQwsW%FNomPxNp^Btx;w|t&9t-K ziFs-1Q=;sFDH)mB?kRR!vK^UVr{(-{uX{>ybaGTlbaJL^Oo}_hot==IV@GAvo@pa3 zBiEgsk&vD~Bg*cbmut_+%*(cO_+OIy!JNG0%T1u?dOXS=`A}L` zmU~K6$;y=O<;K}r3E8ybPPeD0<)+$0?X2v~BzH~@k4{f@XS?mJ%$%IG#B{ga!Z(V9 zbTdf1NkU$3W)q%DPq%a2xjf0RlCtt5lQQ!%a>I*Hq&2PU&Q@h!4i8UpCnw~k=XSAE zbEl<;mz1Slv7^&+BeT+y9-3iK%benlu%{L0sVH#;`mTf2VzA1K#KW_J3jnaJd2)8ma|L5Hi%p-$K%cX_H88lLo zwPcNJP;w^yO?BHz2}!A3ac4Y|mYta~&7DDqc*T^=q}*(`+nIpBMl@{nsNthW#SM&a z9p&7T6JA_?+5P?rB-EG0;xm(K$Ji~@si>?O;hN_3%%lXp{;y_o7?7QiV~-p*I=)X| znhP&^U|EEJq;Is0Q`4CdmTRXbJmR*SI0I;++~<-e%VedvT6?>A_o~2>HLLu}w^Zgy zfwMTZaO?zMawF`_jPx0HWSpIumCItzDPF&JSqm+I$gvUjLvDALosy~K)BOxP#k|5d zK~(0Hgs+P(SG8?qbf?HR9ql&ly0q_9lDyvSDjyTorsUmc?~PeiGr|>I@p9>rvPBz< zZ=B8!YL;Vr^I!1hKkm&hy8Ob9vYl(o=58+jepl_1#4~rA#FiB;y|{JprI#0a^VfI_ z7JKtIcnk8q`8&<6-omH612_N?r?|(akmAzKmAiWLS9$Y!4gW9j=5N#c z@^}8n?(yco?0e|n-@g6n%C0)a-yWdSU;TvIVQkc5b-*+!B+C z?+!1xwD3ULg6GxL+|7S%I`wU+t(N}WaO8Kpldk+V6-nZEhZh!Cxf9dw!jaNTPm+3H zVx3OR^%fqcX>Z|t-{@ZS^=!d+hu3Oz@?c4~JMQTCj6e6Mw{R0rsPl6RF6>`=d2fkt z$Xhg_nyxk8eELtgvut_6rFmQFi#LC>Z@RZ!-m#@@#Uk_meH&Z4o-CK>EiCdi_pG+B zH=nTedbm-eo?xUjVNiLdJv z@4g*WeC>PxeQhIMVdbW3vi_#|D%j^OB%iD)UcBMb%3Wof3R#?SW_SPlbno{~(h8>M zf2Qky?0mAfs!e5A;3~enPWSxx0;V137~sx7#;(PCapBzm|7Cxk3v{;Z3HrX;JViT} zGYZY;VQ)bxE8{}x`m!DS?zDF0RIU3T+1mc+=~2AvrTUfsx>|hdr55|9#ky`(i2Lu3 zt4(Jqt@GxuWl2ZIc?-5_2`i&py@f1_o!)%k%Y8Sln$X*I{JzMsJb7`+eD=Jv2ssGm r=KrxQmRx@Bg-e?c{y87MV`3=_+}Q>ND=+QkL8f5wzR*6dm&^ShrtCEO diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 2c6335d2d96..50668b6befb 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -24,14 +24,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tetsuo Koyama , 2020-2023\n" "Language-Team: Japanese (http://app.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -54,104 +54,104 @@ msgstr "出力先ディレクトリにはソースディレクトリと異なる msgid "Running Sphinx v%s" msgstr "Sphinx v%s を実行中" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "このプロジェクトはSphinx v%s以降のバージョンでなければビルドできません。" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "拡張機能のセットアップ中 %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "conf.pyにある'setup'はPythonのcallableではありません。定義を修正してcallableである関数にしてください。これはconf.pyがSphinx拡張として動作するのに必要です。" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "完了" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "翻訳が用意されていません" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "ビルド %s, %s 警告." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,70 +172,75 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "直列で %sします" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "conf.py が設定ディレクトリに存在しません (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "無効な設定値が見つかりました: 'language = None' 。設定を有効な言語コードに更新してください。 'en' (英語)にフォールバックしています。" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "%s という設定値はありません" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -243,291 +248,328 @@ msgid "" "%s" msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "v2.0以降、Sphinxはデフォルトで \"index \" をroot_docとして使用しています。conf.pyに \"root_doc = 'contents'\" を追加してください。" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "イベント %r はすでに登録されています" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "不明なイベント名: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "イベント %r のハンドラ %r で例外が発生しました。" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "needs_extensions設定で %s 拡張が要求されていますが、その拡張がありません。" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "このプロジェクトは拡張 %s の %s 以降のバージョンが必要なため、現在のバージョン(%s)ではビルドできません。" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments に %r というlexerがありません" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "ドキュメント \"%s\" で複数のファイルが見つかりました: %r\nビルドには %r を使用してください。" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "ビルダークラス %s には\"name\"属性がありません" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "ビルダー %r (モジュール %s) がすでに登録されています" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "ビルダー名 %s は登録されておらず、entry pointにもありません" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "ビルダー名 %s は登録されていません" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "ドメイン %s はすでに登録されています" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "ドメイン %s はまだ登録されていません" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "ディレクティブ %r は既に%sドメインに登録されています" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "ロール %r は既にドメイン%sに登録されています" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "インデックス %r はすでに%sドメインに登録されています" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "object_type %r はすでに登録されています" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "classref_type %r はすでに登録されています" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r はすでに登録されています" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "%r のsource_parserはすでに登録されています" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "%s のsource_parserは登録されていません" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "%r のTranslatorはすでに登録されています" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() のキーワード引数は (visit, depart) の形式で関数をタプルで指定してください: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r はすでに登録されています" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "math renderer %s はすでに登録されています" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "拡張 %r はSphinxのバージョン%sでSphinxに統合されています。この拡張は無視されます。" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "元の例外:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "拡張 %s をimportできません" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "拡張 %r には setup() 関数がありません。これは本当にSphinx拡張ですか?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "このプロジェクトで使われている拡張 %s はSphinx v%s 以降が必要なため、現在のバージョンではビルドできません。" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "拡張 %r のsetup()関数が、対応していないオブジェクトを返しました。Noneまたはメタデータ辞書を返してください" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "無効なPEP番号 %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "無効なRFC番号 %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "テーマ %r に \"theme\" 設定がありません" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "テーマ %r に \"inherit\" 設定がありません" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "テーマ %r が %r から継承されていますが、見つかりませんでした" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s.%s がテーマ設定にありません" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "サポートされていないテーマオプション %r が指定されました" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "テーマパス上のファイル %r は正しいzipファイルではないか、テーマを含んでいません" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "テーマ %r がありません(theme.confが見つからない?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -543,8 +585,8 @@ msgstr "%sビルダー向けの画像形式が見つかりません: %s" msgid "building [mo]: " msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "出力中..." @@ -593,7 +635,7 @@ msgstr "コマンドラインで指定された%d件のソースファイル" msgid "targets for %d source files that are out of date" msgstr "更新された %d 件のソースファイル" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "ビルド中 [%s]: " @@ -602,50 +644,50 @@ msgstr "ビルド中 [%s]: " msgid "looking for now-outdated files... " msgstr "更新されたファイルを探しています... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d 件見つかりました" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "見つかりませんでした" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "環境データを保存中" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "整合性をチェック中" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "更新が必要な対象はありませんでした" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "環境データを更新中" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 件追加, %s 件更新, %s 件削除" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "ソースを読み込み中..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "ドキュメントの出力準備中" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -654,36 +696,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "画像をコピー中... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "画像ファイル %r をコピーできません: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "画像ファイル %r を書き込めません: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillowがインストールされていません。代わりに画像をコピーします" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "mimetype を書き込み中..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "META-INF/container.xml を書き込み中..." @@ -691,470 +733,470 @@ msgstr "META-INF/container.xml を書き込み中..." msgid "writing content.opf file..." msgstr "content.opf を書き込み中..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "不明なmimetype %sのため無視します" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "tox.ncx を書き込み中..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "ファイル %s を書き込み中..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "ファイルは%(outdir)sにあります" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "バージョン %s での変更はありません" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "概要ファイルを書き出し中..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "組み込み" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "モジュールレベル" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "ソースファイルをコピー中..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "Changelog作成中に %r を読み込めませんでした" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "dummyビルダーはファイルを出力しません" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePubファイルは%(outdir)sにあります。" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "nav.xhtml を書き込み中..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_language\" (あるいは \"language\") の指定が必要です" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "EPUB3では設定値 \"epub_uid\" はXML NAMEにするべきです" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_title\" (あるいは \"html_title\") の指定が必要です" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_author\" の指定が必要です" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_contributor\" が必要です" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_description\" が必要です" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_publisher\" の指定が必要です" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_copyright\" (あるいは \"copyright\") の指定が必要です" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "メッセージカタログは%(outdir)sにあります。" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "指定された %d 件のテンプレートファイル" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "テンプレートの読み込み中..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "メッセージカタログを出力中... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "リンクが切れています: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects 内の正規表現のコンパイルに失敗しました: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "マニュアルページは %(outdir)s にあります。" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "設定値 \"man_pages\" が見つかりません。マニュアルページは書かれません" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "書き込み中" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "設定値 \"man_pages\" が不明なドキュメント %s を参照しています" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML ページは%(outdir)sにあります。" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "ドキュメントを1ページにまとめています" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "追加のファイルを出力" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfoファイルは%(outdir)sにあります。" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nmakeinfo コマンドで処理するため、そのディレクトリで 'make' を実行してください。\n(これを自動的に行うには、ここで 'make info' を使用してください)。" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "設定値 \"texinfo_documents\" が見つかりません。ドキュメントは書き込まれません" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "設定値 \"texinfo_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "処理中 %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "参照を解決しています..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "Texinfo 関連ファイルをコピーしています" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "Makefile の書き込みエラー: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "テキストファイルは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "ファイル書き込みエラー %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XMLファイルは%(outdir)sにあります。" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "pseudo-XMLファイルは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "build info ファイルが壊れています: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTMLページは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "build info ファイルの読み込みに失敗しました: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%Y年%m月%d日" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "総合索引" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "次へ" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "前へ" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "索引を生成中" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "追加のページを出力中" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "ダウンロードファイルをコピー中..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "ダウンロードファイル %r をコピーできません: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "静的ファイルをコピー中" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "静的ファイル %r をコピーできません" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "extraファイルをコピー中" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "extraファイル %r をコピーできませんでした" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "build info ファイル %r の出力に失敗しました" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。" -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "オブジェクト インベントリを出力" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "%s の検索インデックスを出力" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無効な js_file %r は無視されました" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "不明な math_renderer %r が指定されました。" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "ロゴファイル %r がありません" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ファイル %r がありません" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeXファイルは%(outdir)sにあります。" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "設定値 \"latex_documents\" が見つかりません。ドキュメントは書き込まれません" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "リリース" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "%r 言語向けの 既知の Babel オプションはありません" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "TeX 関連ファイルをコピーしています" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "TeX 関連ファイルをコピー中..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "追加のファイルをコピーしています" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "不明な設定値 latex_elements[%r] は無視されました。" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "不明なテーマオプション latex_theme_options[%r] は無視されました。" @@ -1169,15 +1211,15 @@ msgstr "%r に \"theme\" 設定がありません" msgid "%r doesn't have \"%s\" setting" msgstr "%r に \"%s\" 設定がありません" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1236,8 +1278,8 @@ msgstr "バグ報告はこちらにお願いします ." msgstr "詳しくは、を見てください。" @@ -1269,257 +1311,264 @@ msgid "path to output directory" msgstr "出力先ディレクトリへのパス" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "再構築するための設定ファイルのリスト。 -a が指定されている場合は無視されます" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "一般的なオプション" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "使用するビルダー(デフォルト:html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "すべてのファイルに書き込む(デフォルト: 新規ファイルまたは変更されたファイルのみ)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "保存された環境は使わず、常に全てのファイルを読み込む" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "キャッシュされた環境とDoctreeファイルへのパス(デフォルト:OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "可能な場合、ビルドを N 個のプロセスで並列実行する(特別な値 \"auto\" は N を cpu-count に設定する)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "設定ファイル(conf.py)がある場所のパス(デフォルト:SOURCEDIRと同じ場所)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "設定ファイルを使用せず、-Dオプションのみを使用" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "設定ファイルの設定を上書きする" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "HTMLテンプレートに値を渡す" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "定義タグ: TAG ブロック\"のみ\"含む" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "nit-picky モード。不足しているすべての参照について警告する" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "コンソール出力オプション" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "精度の増加(繰り返し可能)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "標準出力には出力せず、標準エラー出力に警告を出すのみ" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "何も出力せず、警告もしない" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "色分けで出力する(デフォルト:自動検出)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "色分けの出力をしない(デフォルト:自動検出)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "指定ファイルに警告(およびエラー)を書き込む" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "警告をエラーとして扱う" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "-Wを指定すると、警告が表示されたときは実行を続ける" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "例外時にフルトレースバックを表示する" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "例外が発生したときにPdbを実行する" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "-aオプションとファイル名を組み合わせることはできません" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "警告ファイル %r を開けません: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-Dオプション引数は name = value の形式でなければなりません" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-Aオプション引数は name = value の形式でなければなりません" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "モジュールから自動的に docstring を挿入する" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "doctest ブロック内のコードスニペットを自動的にテストする" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "異なるプロジェクトのSphinxドキュメント間のリンク" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "ビルド時に表示または非表示にできる \"todo\" エントリを書く" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "ドキュメントの適用範囲を確認する" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "PNG または SVG 画像としてレンダリングされた数学を含む" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "MathJax によってブラウザにレンダリングされた数学を含む" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "設定値に基づくコンテンツの条件付き包含" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "文書化された Python オブジェクトのソースコードへのリンクを含める" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "GitHub ページにドキュメントを公開するための .nojekyll ファイルを作成する" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "有効なパス名を入力してください。" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "何か入力してください。" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "%sのいずれかを入力してください。 " -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "'y' または 'n' を入力してください。" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "ファイルの拡張子を入力してください。例: '.rst' または '.txt'。" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Sphinx %s クイックスタートユーティリティへようこそ。" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "以下の設定値を入力してください(Enter キーのみ押した場合、\nかっこで囲まれた値をデフォルト値として受け入れます)。" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "選択されたルートパス: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "ドキュメントのルートパスを入力してください。" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "ドキュメントのルートパス" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "エラー:選択されたルートパスに既存の conf.py が見つかりました。" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart は、既存の Sphinx プロジェクトを上書きしません。" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "新しいルートパスを入力してください(または Enter を押すことで終了します)。" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Sphinx 出力用のビルドディレクトリを配置する方法は2つあります。\nルートパス内にある \"_build\" ディレクトリを使うか、\nルートパス内に \"source\" と \"build\" ディレクトリを分ける方法です。" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "ソースディレクトリとビルドディレクトリを分ける(y / n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "プロジェクトのルートディレクトリに 2つ以上のディレクトリが作成されます。\nカスタマイズしたHTMLテンプレート用の\"_templates\"ディレクトリと、カスタマイズしたスタイルシート等を置く\"_static\"ディレクトリがあります。\nこれらのディレクトリは \"_\" で始まっていますが、別の文字(\".\"など)で始まるように指定できます。" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "テンプレートと静的ディレクトリの名前プレフィックス" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "プロジェクト名は、ビルドされたドキュメントのいくつかの場所にあります。" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "プロジェクト名" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "著者名(複数可)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1528,15 +1577,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx には、ソフトウェアに対して \"バージョン\" と \"リリース\" という概念が\nあります。各バージョンは複数のリリースを持つことができます。\n例えば、Python だとバージョンが 2.5 や 3.0 のように分かれているように、\nリリースも 2.5.1 や 3.0a1 のように分けて持つことができます。もしこのような多重構成が必要ない場合は、\n両方を同じ値に設定するだけです。" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "プロジェクトのバージョン" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "プロジェクトのリリース" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1546,21 +1595,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "ドキュメントを英語以外の言語で書く場合は、\n 言語コードで言語を選択できます。Sphinx は生成したテキストをその言語に翻訳します。\n\nサポートされているコードのリストについては、\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language を参照してください。" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "プロジェクトの言語" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "ソースファイルのファイル名の拡張子。一般的には、\".txt\"または\".rst \"のどちらかです。この拡張子を持つファイルだけがドキュメントとみなされます。" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "ソース・ファイルサフィックス" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1568,91 +1617,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "1つのドキュメントは、\"コンテンツツリー\"の最上位ノードと\n見なされるという点で特別です。つまり、それはドキュメントにおける階層構造のルートである\nということです。通常、これは \"index\" ですが、\n\"index\" ドキュメントがカスタムテンプレートの場合、これを別のファイル名に設定することもできます。" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "マスター文書の名前(拡張子を除く)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "エラー:マスタファイル %s は、選択されたルートパス上で既に存在します。" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart は既存のファイルを上書きしません。" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "新しいファイル名を入力するか、既存のファイルの名前を変更してEnterキーを押してください。" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "次の Sphinx 拡張機能のうちどれを有効にするかを指定します。" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "注:imgmath と mathjax を同時に有効にすることはできません。 imgmath は未選択になります。" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Makefile と Windows コマンドファイルは生成することができるので、\n後は実行するだけです。例えば、直接 sphinx-build を実行する代わりに `make html` を\n実行します。" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Makefile を作成しますか? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Windows コマンドファイルを作成しますか?(y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "ファイル %s を作成しています。" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "ファイル %s は既に存在しますのでスキップします。" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "終了:初期ディレクトリ構造が作成されました。" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "マスターファイル %s を作成して\n他のドキュメントソースファイルを作成します。" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "次のように Makefile を使ってドキュメントを作成します。\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "次のように、ドキュメントを構築するには sphinx-build コマンドを使用してください。\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "\"builder\" はサポートされているビルダーの 1 つです。 例: html, latex, または linkcheck。" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1662,135 +1711,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nSphinx プロジェクトに必要なファイルを生成します。\n\nsphinx-quickstart は、いくつかの質問であなたの\nプロジェクトを生成するためのディレクトリと、sphinx-build と一緒に使える\nサンプルのMakefileを作成してくれるインタラクティブなツールです。\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "Quiet モード" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "project root" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "構成オプション" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "記述した場合、ソースとビルドのディレクトリを分割します。" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "指定された場合、ソースディレクトリの下にビルドディレクトリを作成します。" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "_templates などのドットの置き換え" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "プロジェクトの基本オプション" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "プロジェクト名" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "著者名" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "プロジェクトのバージョン" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "プロジェクトのリリース" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "ドキュメント言語" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "ソース・ファイルサフィックス" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "マスタードキュメント名" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "epubを利用する" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "拡張オプション" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "%s 拡張を有効にする" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "任意の拡張を有効にする" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefileとbatファイルの生成オプション" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "makefileを作成する" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "makefileを作成しない" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "batファイルを作成する" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "batファイルを作成しない" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile / make.bat 向けに make-mode を使う" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile / make.bat 向けに make-mode を使わないでください。" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "プロジェクトテンプレート" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "テンプレートファイルのテンプレートディレクトリ" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "テンプレート変数の定義" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\" が指定されていますが、 \"project\" または \"author\" のいずれも指定されていません。" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "エラー:指定されたパスはディレクトリではないか、または sphinx ファイルが既に存在します。" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart は空のディレクトリにのみ生成します。新しいルートパスを指定してください。" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "無効なテンプレート変数: %s" @@ -1841,47 +1890,47 @@ msgstr " \"lineno-match\" は不連続な \"lines\" に対して使用できま msgid "Line spec %r: no lines pulled from include file %r" msgstr "指定された %r に一致する行がインクルードファイル %r にありませんでした" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree グローブ・パターン %r はどのドキュメントにもマッチしませんでした。" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree に除外したドキュメントへの参照が含まれています %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree に存在しないドキュメントへの参照が含まれています %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "toctree で重複したエントリが見つかりました: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "この節の作者: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "モジュールの作者: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "コードの作者: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "作者: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1896,82 +1945,10 @@ msgstr "csv-table ディレクティブの \":file:\" オプションは、絶 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "パラメータ" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "戻り値" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "戻り値" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "戻り値の型" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "のメンバ変数" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "変数" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "の関数" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "のマクロ" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "struct" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "union" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "列挙型" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "のデータ型" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "関数パラメータ" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "バージョン %s で追加" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1983,346 +1960,423 @@ msgstr "バージョン %s で変更" msgid "Deprecated since version %s" msgstr "バージョン %s で非推奨" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "引用 %s はすでに %s で使われています" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "引用 [%s] は参照されていません。" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "テンプレートパラメータ" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "例外" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "クラス" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "コンセプト" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "テンプレート・パラメータ" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (クラス)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "引数" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "例外" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "戻り値" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "戻り値の型" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "の関数" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "クラス" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "の属性" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "モジュール" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "%s の記述 %s はすでに %s で %s が使われています" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "数式 %s のラベルはすでに %s で使われています" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (ディレクティブ)" + +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (ディレクティブオプション)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (ロール)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "ディレクティブ" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "ディレクティブオプション" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "ロール" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "%s の記述 %s はすでに %s で使われています" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "パラメータ" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "戻り値" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "のメンバ変数" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "変数" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "例外" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "のマクロ" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "struct" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "union" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "列挙型" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "のデータ型" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "関数パラメータ" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "テンプレートパラメータ" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "コンセプト" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "テンプレート・パラメータ" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (%s のプロパティ)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "プロパティ" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (非推奨)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (ディレクティブ)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (ディレクティブオプション)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (ロール)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "ディレクティブ" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "ディレクティブオプション" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "ロール" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "変数" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "%s の記述 %s はすでに %s で使われています" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "例外" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "環境変数; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s コマンドラインオプション" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "コマンドラインオプション" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "用語集の前に空行が必要です" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "用語集の用語は空行で区切ってはいけません" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "用語集のフォーマットが間違っているようです。インデントを確認してください" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "用語集の項目" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "文法トークン" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "参照ラベル" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "環境変数" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "プログラムオプション" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "document" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "検索ページ" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "ラベル %s はすでに %s で使われています" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "%s の記述 %s はすでに %s で使われています" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig は無効です。:numref: は無視されます。" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "クロスリファレンスの作成に失敗しました。番号が割り当てられていません: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "リンクにキャプションがありません: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無効な numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "無効な numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2339,35 +2393,35 @@ msgstr "変更された設定" msgid "extensions changed" msgstr "変更された拡張" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "ビルド環境のバージョンが最新ではありません" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "ソースディレクトリが変更されました" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "ドキュメントはどの toctree にも含まれていません" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "自己参照している toctree が見つかりました。無視します。" @@ -2391,39 +2445,39 @@ msgstr "不明なインデックスエントリタイプ %r" msgid "Symbols" msgstr "記号" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "循環参照している toctree が検出されましたので無視します: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree にはタイトルのないドキュメント %r への参照が含まれています: リンクは生成されません" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "画像ファイルが読み込めません: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "画像ファイル %s が読み込めません: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "ダウンロードファイルが読み込めません: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s はすでにセクション番号が割り当てられています (入れ子になった番号の toctree ?)" @@ -2433,7 +2487,7 @@ msgstr "%s はすでにセクション番号が割り当てられています ( msgid "Would create file %s." msgstr "ファイル %s を作成したものとします。" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2445,149 +2499,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n 内を再帰的に調べてPython のモジュールとパッケージ、\n後は1つのreST ファイルを 内にあるパッケージ毎の automodule ディレクティブに作成します。\n\n は、ファイル、またはディレクトリ、または両方のパターンを\n生成処理から除外することができます。\n\n注:デフォルトでは、このスクリプトはすでに作成されているファイルを上書きしません。" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "ドキュメントへのモジュールパス" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "生成処理から除外するための、ファイル、ディレクトリ、または両方のパターンを記した fnmatch-style 形式" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "目次に表示するサブモジュールの最大深度 (デフォルト: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "存在するファイルは上書きする" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "シンボリックリンクをたどります。collective.recipe.omeletteと組み合わせると強力です。" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "ファイルを作成せずにスクリプトを実行する" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "各モジュールのドキュメントをそれぞれのページに配置する" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "\"_private\" モジュールを含めます。" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "目次のファイル名 (デフォルト: モジュール)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "目次ファイルを生成しない" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "module/package パッケージの見出しを生成しない (例: docstring にすでにそれらが含まれている場合など)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "サブモジュールのドキュメントの前に、モジュールのドキュメントを置く" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "PEP-0420 暗黙の名前空間の指定に従って、モジュールパスを解釈する" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "ファイルの拡張子 (デフォルト: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart を使って完全なプロジェクトを生成する" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "module_pathを sys.path に追加します。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "プロジェクト名 (デフォルト: ルートモジュール名)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "プロジェクト著者名(複数可)。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "プロジェクトバージョン。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "プロジェクトのリリースバージョン。--full が与えられたときに使用されます。デフォルトは --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "拡張オプション" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s はディレクトリではありません。" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "無効な正規表現 %r が %s 内に見つかりました" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "ソース内のカバレッジのテストが終了したら、%(outdir)spython.txt の結果を確認してください。" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "coverage_c_regexes 内に無効な正規表現 %r があります" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "モジュール %s をインポートできませんでした: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2611,24 +2665,24 @@ msgstr "'%s' は正しい pyversion オプションではありません" msgid "invalid TestCode type" msgstr "無効な TestCode タイプ" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "ソース内の doctests のテストが終了したら、%(outdir)s/output.txt の結果を確認してください。" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "%sブロックにあるコード/出力 が %s にありません: %s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "無効な doctest コードは無視されます: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最も遅い読み取り時間 =======================" @@ -2639,32 +2693,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "ハードコードされたリンク %r は 拡張リンクに置き換えられる可能性があります (代わりに %r を使用してみてください)。" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz ディレクティブはコンテンツとファイル名の両方の引数を持つことは出来ません" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部の Graphviz ファイル %r が見つからないか読み込めません" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "コンテンツのない \"graphviz\" ディレクティブを無視します" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot コマンド %r は実行できません (graphviz 出力のために必要です)。graphviz_dot の設定を確認してください" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2674,7 +2728,7 @@ msgid "" "%r" msgstr "dot はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2684,27 +2738,27 @@ msgid "" "%r" msgstr "dotは出力ファイルを生成しませんでした:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format は %r ではなく 'png' か 'svg' でなければなりません" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "dot コード %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[グラフ: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[グラフ]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2712,7 +2766,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2722,173 +2776,178 @@ msgid "" "%r" msgstr "変換処理はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "convert コマンド %r は実行できません。image_converter の設定を確認してください" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX コマンド %r を実行できません (数式表示のために必要です)。imgmath_latex の設定を確認してください" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s コマンド %r を実行できません (数式表示のために必要です)。imgmath_%s の設定を確認してください" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "latex の表示 %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "latex のインライン表示 %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx インベントリは移動しました: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s から intersphinx インベントリをロード中..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[ソース]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "課題" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "TODO エントリーが見つかりました: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> は、 %s の %d 行目です)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "元のエントリ" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "モジュールコードをハイライトしています..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[ドキュメント]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "モジュールコード" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s のソースコード

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "概要: モジュールコード" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "member-order オプションに無効な値があります: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "class-doc-from オプションに無効な値があります: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "auto%s (%r) の署名が無効です" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2896,112 +2955,112 @@ msgid "" "explicit module name)" msgstr "ドキュメントの自動生成 %r のためにどのモジュールをインポートするのか分かりません (ドキュメントに \"module\"または \"currentmodule\"ディレクティブを配置するか、明示的なモジュール名を指定してください)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "モックオブジェクトが検出されました: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "%s のシグネチャをフォーマット中にエラーが発生しました: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 名の \"::\" は意味がありません" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule に与えられた署名引数、または戻り値となるアノテーション %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ は文字列のリストでなければなりません。%r (%s モジュールの中) ではないです -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "members: オプションで指定された属性がありません: モジュール %s、属性 %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s の関数シグネチャの取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "%s のコンストラクタ署名の取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "%sの別名です。" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)のエイリアスです。" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "無効な __slots__ が %s で見つかりました。無視されました。" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r の既定の引数値の解析に失敗しました: %s。" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "%r のシグネチャの更新に失敗しました: パラメータが見つかりません: %s。" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "%rのtype_commentを解析できませんでした: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary は除外したドキュメント %r を参照しています。無視されます。" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: stubファイルが見つかりません%r。autosummary_generate設定を確認してください。" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "キャプション付きオートサマリーには :toctree: オプションが必要です。" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3009,26 +3068,26 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "%sの名前を解析できませんでした " -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。" +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3101,99 +3160,99 @@ msgid "" "%(default)s)" msgstr "モジュール __all__ 属性に含まれるメンバーのみを対象としたドキュメントを作成します。(デフォルト: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "キーワード引数" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "サンプル" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "サンプル" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "メモ" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "その他のパラメータ" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "受け取る" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "参照" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "列挙" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "無効な値セット (終了括弧がありません): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "無効な値セット (開始括弧がありません): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "不正な文字列リテラル (終了引用符がありません): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "不正な文字列リテラル (開始引用符がありません): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "注意" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "危険" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "エラー" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "ヒント" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "注釈" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "参考" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "警告" @@ -3225,7 +3284,7 @@ msgid "Table of Contents" msgstr "目次" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "検索" @@ -3358,34 +3417,22 @@ msgstr "次のトピックへ" msgid "next chapter" msgstr "次の章へ" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "検索機能を使うには JavaScript を有効にしてください。" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "複数の単語を検索すると、次を含む一致のみが表示されます\n     すべての用語。" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "検索" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "検索結果" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "検索した文字列はどの文書にも見つかりませんでした。すべての単語が正確に記述されているか、あるいは、十分なカテゴリーが選択されているか確認してください。" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "クイック検索" @@ -3422,20 +3469,30 @@ msgstr "C API に関する変更" msgid "Other changes" msgstr "その他の変更" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "検索結果" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "検索した文字列はどの文書にも見つかりませんでした。すべての単語が正確に記述されているか、あるいは、十分なカテゴリーが選択されているか確認してください。" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "検索中" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "検索を準備しています..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", in " @@ -3456,30 +3513,30 @@ msgstr "サイドバーを展開" msgid "Contents" msgstr "コンテンツ" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4列ベースのインデックスが見つかりました。あなたが使っている拡張子のバグかもしれません: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Footnote [%s] は参照されていません。" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Footnote [#] は参照されていません。" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3491,13 +3548,13 @@ msgid "" "{1}" msgstr "翻訳されたメッセージの参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "翻訳されたメッセージの引用参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3524,90 +3581,90 @@ msgstr "%s:%s 参照先が見つかりません: %s" msgid "%r reference target not found: %s" msgstr "%r 参照先が見つかりません: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "リモート画像を取得できませんでした: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "リモート画像を取得できませんでした: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "不明な画像フォーマット: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "スキップしました" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "失敗しました" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "不明なディレクティブまたはロール名: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "不明なノードタイプ: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "読み取りエラー: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "書き込みエラー: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "日付形式が無効です。直接出力したい場合は、文字列を一重引用符で囲みます: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree に存在しないファイルへの参照が含まれています %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only ディレクティブの条件式の評価中に例外が発生しました: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "デフォルトのロール %s が見つかりません" @@ -3630,27 +3687,27 @@ msgstr "いくつかの ID が %s ノードに割り当てられていません" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。" @@ -3667,13 +3724,13 @@ msgstr ":maxdepth: が大きすぎるので無視されます。" msgid "document title is not a single Text node" msgstr "ドキュメントのタイトルは、単一の Text ノードではありません" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "注記" @@ -3692,20 +3749,20 @@ msgstr "ディメンション単位 %s が無効です。無視されます。" msgid "unknown index entry type %s found" msgstr "不明なインデックスエントリタイプ %s が見つかりました" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[画像: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[画像]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "キャプションは図の中にはありません。" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "未実装のノードタイプ: %r" diff --git a/sphinx/locale/ka/LC_MESSAGES/sphinx.mo b/sphinx/locale/ka/LC_MESSAGES/sphinx.mo index 4c3c4299472c586bc7c6123622c568b9e969859c..a568e60eb173194ff18ec803f89dc44c41ed5cd5 100644 GIT binary patch delta 8793 zcmYM(2Y6LQ`p5CPkU|0p12sB;xcTB$I%CUsu@!TgE0mxq1tPMRdFzKt8t^+ z$;Mzpvynm&75h+q7oi%wjDC0>xzRktFf8-3y{{^kC62{NY>8^;b=2o3pxT-3TwjR# z{AS1e65YmJprDTLU^u?O3K$-3j6cSr2G9ceXS(yFBEIRw%W*I9ZdAwPnZDYYh2?Pt zhT-o@)kdWrhK@0CoRgsHO6%VN)G~ z^kJHyHx5J%Bpr3%baZRx3n{#Wt5Iw94XVNKP$~R3s-bI+0gR?HaU5zdbVsFj5wc2V zJ!&bApckG;U;GJ`xoeK4Yq9=;R8*~H41+ff&=dP$G7dy7MK*e49+ttw*ceZsmc~`v zW-b)faWpo=CfE=&unuNp92TJl>Z(KjRfy(lB6dKQ-^@XExB<0mbDZmEP#N;8YuB(2 z`Ve+9E-ZzGNZ+Q&sej_8;6a6dJ!9%)5URmePTUEVk!h&4bE6tu zf&RD|SrxO(slSYii0`A8XeN!yHK@$&K~1O-m3j9q3ceKnM9s{*fo-@3>V|mq!(^wv z8`8EJge;?3jQadHj)$E3Le$=RfSRC3teuDtDzkye+}$ReLI@SfSPuJP0FFd;Fcr1t z*{BR`L3Nmq+A}Ax5#GmmjA6kwk^YX;QO9wO;|^2?3$ZNyo68i`@NF!IrD;v64Z%Q+ z!t&VAiIY)#q!)7J%~Vu_Yf+!uj@tDHQ3F4UYWEas;6I}>a1;IL-`uC589#R}_{Z59 zgkX8<<53NEKxL{cYDvS%d26b5zG$Q3J_GZO-G!J~qFgTMhY>w^3LD zlW;C-hDR_6uc1c#6xEQ6v!{Ar48}@W8)K0+%>ZQC%@VAMhmh@Mu46Y0=P@`Ahc_Yr zTC0mxXjeW(9mk41Rg~H!jKnm21LtCYyop`09f!OZet@0v2I@i8IKgIc0BRyLP^aV* zCoaGg;@=X;zb-W9@M-{qum!r2KFk4BN*`f5zQDei-kj$@?nf<6+$-!GOhoPWB#gwi zsEnjz7_LGs)mGF*Pq-BxC3c(h6e6g2hWcPgD?6Y@Sd};xTjLn)k6Td>AYUr0 zU^A?QeNh9Qgi*K%^&RjfDw9`G6T6Apw2#r7{*7N7`@I~DET`#&DLCJW&mhZg{M#DS z5j&t#w-h^IA#!p}`DAN5)Ulk3@wfoB_WMx-J?F&tFoOP#cRPC_3YCE*tbhYiGn|YX z@dv0i+=St{4>jX+sHM7&THB!ZHucpombejmU>YjZ!%@d`4!X7WJ1A7gBGg(wM9uIy zs=;PVGZIr!sUL|Nz$(KQ9yUwVQthB^hb3#36+s7tcP11e?VF5Y_$;CqCm`zlEMU|A9U28ik_vKs{80ZBT1D!f_l%5l?aA)#y#U9+Pns`r>WW zCVPVZ_!n{@jBhWy8GE26HWgo{f3uu|Qo9Q^;$Kk>zCbmY+}nPOy^30ziB9}6mL<-2 z>QAFK?-SGjg8JBF8-~hAQ`A!RN8L9W-60e*DFowZsLi$;%V9q1IG#mqp2w&TJ^R`L zhoENI8a1%4s3n-<)E~gw#D%DKAE74r95u0*UL*hIDa5>HH%BwnK)O2dPz)rVin?zh zhT})58RlX z4z(#$Q3Du>+8eV_GyB|$Ph%4C@7NR@53m^iIDTwbbvSKEKyZA(p}w)GiGj zXlD?I>aZWK#LV*zpu{$(X;{)DA-anQ8oJf<7TP#=}Kj;Kt#Qz=xW zFa$ku7V3DtgG%Lg=lTUy>K-_TzHXPSDXKmd!!QH2*7F^gpeC{kHIOf{ITm6q`Zr!f zY^q~XH#S41xHDG3366_V1N|IBF&``8_s;bP7(whm)V5O{wO0}xyW>6=#~Gukk4e`n zo15=@3Tvq7ieKOj)LJch!*;kDXA&SCI^HkMeEa|lQ3D;!j(iLMfxEE{`PULWDfD>HZn~N1 zPrMGR;FqXO6e9o3ulz{Baqrs!Z$S;F^s|j9dKfe*r5}(2K_~|OU#BEpG_l4uA zrF*`b{Hx*0Y)u)5iI{?Oa4vF!jQ2-&Q_e>%%?r%Hw2%4A7oJ1o;su2*-;Uyjk{U4a+_yjX3)=dkhmkw=>^`lc+Do@!01J zyJW|34{^;6_74=r*pE12BX7W%h3s!rdz0NGJMjXs`!og3VB=;+!-xiMv0tC*U)t19 zL8W>D_Qfr@7)yP{LkBZa^=Gj?*819JY8+}$+(11KO6Ax+R0U@cx5w@}|A#3wrXpmk zona@`2PR`UE_3QPV^iYqFd6-~*`unUia3Jw9+>0^$?b7^=F~oPV8-^aRnHz>| z4>Jc@Ra4`jX37$w;><(*vVzU>$;!7BiYc%^%%*?X4!RvS=6zz{Blh^L!WP5{|FmB+ zQ?L*5Bdm#Cj@nF2#&?MGa6Tr{_yRnN8enRH-7D)*@$UuXzY~QH$7}=3F_riNW@F58 z`fdLd`tr4BsD^h}vX3Q4L?g{@D1eeGV+ei^M-+ zH17JB{Tlz#O`!u7Eza5Z_IWs-_zI4|KHu53&&O%RmCsvOqIPl6_x8IZ1(mr`s2T4? z4e&hH#pllTIv4B%Y8pmS?> z{~j*J0%ZG`o6z$^FPlPOdby6hP$X6Q-8K^I18~MvCl7d zjhmx3S02{E*2VT~cMP^8eukZ~)qm`9d=I-2KgBWF{#W~A@(q5W^WWo&J>O68@7$2~ zU;C@m2|Pet>M9Q*%tsx+9@p#){IA=+Qq8e9Y7Z<#4P-YeV}D^0cD`XBa1l4{11lLv z(7%~PAsa6{zV(}Z##g(=hN6BYj>gp6_G>f`+Y^_)V;{l2u`BT^48&`wjvu4;R=d0Q zk^4UCy3alPh>t*b8WnY&ilwNv{tOS|eq@czjQ`mgZ^LTD-{K#51C_D=-nV}lO?_aW zm>=SL>i@to`0+!#Cww2-3>D$K)c^U2{12zF;CK7-c@OIoH-BvZyfzXwgI};b)_h`5 zNpsZcSc5&$c~812BvN>S znqeGo5p%IUY8RitaTxA$m8{)DtmR^@u{HIFOSww^e&|u!RWhJtRKxx8L!6I`v9gD& z@x;$iOEa36go^kPDuugoFkZxA zm{7)LUdQ#Qj$A&r{Vu4?9Kx|o;2{oovHod(E|bZHlm0HV5C;UfO5S{~pmzBuWnG5V zF;`JbQp|U!1~`SMme&3VYK_B#$P7kfU+jt+;0ENVn`5YfepTLH_YZdQM0K-cDGcJm zWz?Fz5@KiYCTh(tU~Tl{g-uJ;1eM|xOvcH067%o_To7jOs}yeUYk=w04?txkA9Xza zDv*&D6#7w6N13RB97gTp$Ou=-YjzLEd8iKeU@ZO>k^54$4rQ|@#>VI7$6gA^y_B@a zmAk#w^w8WneWv;3ro0|nDr?cuS90$Tedr2^uNNC%uVH*-qqxLIO>^(1_i}m1*N^oz zku|g4eiD^Cde}!bvQ|C{&dPt}mGx@oyxbm3dcT}IJ$JrGZtFeUTIJq;`cp)f*V^Ef n8KJI#-EW7uV!g8bi+r+vyyUxbeMQ&!tR1<*yKhx;4fgmy*CHS= delta 9832 zcmZwM2Xs}%zQ^%7R09bKCDcGRfj|Nz1PCqEAW}pGAp&B7Kn^6B0x1-O9x)UZQRDyt zL?HqqO~fGWS`kHoOGl)MLC|}zO1UZu2;T4S%zoGR)_N`%pZU+8J$vRqGy81xt*sUI z@2=qcx<-XXhJT!L#zbI5bwz*u6A@)h2w_94h%K=rw!t2lfkC(q@4`}y#`jSDUBF2E z6B}b>6WdQR)-=Xv`clv{AI31uLUs5QR>fzLhGrqw#y3&zKE!Hx7#%#1fw4EW_til4 z(+G7v26cab*UKj_aye)<2Yr52;{s<`7oI>)0FrKrKab3p<06co*>) zY>$tlmZk)ixpz?y-h-X+OKgLoE!nu3%pdJA3pLP^mgHZBJyay&_sBjnQLXF)`=C;J zKkE8KRE9R7gZnWEe{`>3M`fZ-oK0~*)BuNJIh=ru$z-|pOMDb6P_Yr?aSN)$Z`}A_ zsEpL(qSh`F)nR)K#{S5%nqhAJQ}`V50@M;kw6-RpGBW}-p$Qm@z85G|p|Bh^v$d#> z_hKj>$EtYIt-p$l$=pVk-Ly=w_otv9Fv^W5p{`FyE#Vpr!w*msK7>rnXO2_Q?mUfT z&s@M-7|OzhVN(pj_NWf;M(u%2R7MI=6PSzILyNI3zK@A`6*aMFD&;+>W9|*;V|PPol9d+My)G2rlHSqbUewShu zo^RGuPzK&brTTr;jK6T}PohSC9`)cqQ61J`ddgHi)P3=&2_&J8S%1`C@}e@7gL?22 zsDaEypLXj)3T%9{0oBn-d>p^U?l_3ErWwA7)$twFfcKy}I^foyz?#J0qjvc%WUQtc zuRXSl8Hq9YJhDGcX$RJSFog?LOvHA)O*GThs9m}Tbv(aAr8bB|?O;55aS)EgckzA< z>&(jwN8te6iqWXEtA3lICejCWY9=I+e^o4?qCakPFPJWN05RB&`g@Tvm}gNb{Rq== z9}dUXU5%NHb5Kij2g_qcZq{xOLIurY>2+g6tt;=xvCB$k*t{ntdA2= z1DS=|%`c(Wa5<`@Pf-ItjT%Ueo_1z2sQY@LmY_fCfjQU+=OL%bXExe`c@H)61E_QS z6>81@#Cq5?*>=z!HLyo85~m>lnqvMKiKkF6sKj3OL1R!KA~R3}ehnLADR$!d<^%<$ zw%XlxhP6<;xG^e)?UDUyx*^ML^07a@?Z!7TiMT^=e&cZxDucVQFaCnODoodVtT|YX z_;pO=`DP0RZHDhqBfag$_50YFw?WkpK&3Dp>*8!wDp#Ne`~hkyk76CXgqrbf)RNU; zG+N>=s2ACN=u4pR2!#qb50&Z#sPnoJmFlzD41YtdX(Oho8OESG9D@$#p;EsPHGtiy ziJeB?!sZ%kk2E2DcVXxL++2u2fM#zd@juN`=QR3`36 zWhM(X@Y$$#C9Yqh`mf5%LG2RKaUgMfEWjev#BQLLrYaXJVI$N4qkR;Vs-CC^jX;fTEXLzA*aNp9lQ!2-H+H$- zrgj)Am073#$MBfdry^hO$hy5PfZI1iQj{n#A;f!Zr! zgKY|vQENH@TjO$Ug$Ga*xPf{h)qTJYI1yVC55fd2#HNAsPoW|eM^KyNr0Y+v<%if^ zUk^2)j;IHwpq5}J>VdDJHrx9chsRyZ4Yiv$0q>!HI7Z>C*g)t1BMLfJX9E?++;kh% zPO$^)j9Q`|SW6wCHf<(qE&Z;`P%oAeH~s`G6YoP_0p=)biR(OQ_gEAL^L*2s0w>EP zqBh-h)XZMTCiosIwcnsp8ZykzFc!6&hoc_wH0lALqV7BFUjN078xFTGo@CU0gVCqm zJdJ{O{Q`8b7?q+OsLgf;)$Tgh!q5@+v@}I+zD^j1$*2hoLG7ifSPf^RCa?&DaW`rJ zhenWpt;z51h3*g84~GG$jwhpL>_g4$6|8}8U^wo?ns~^Kzr|4E8>n_cBkj^fpeC4z ziP#x6k?fJ=Un4G}LTkAW$Ku;q4{JSa*EAk=eK1zV;iywF7L#x;YOOy*ZPJ6N0sMg4 zD|fI3Mn7WX!PuR6ijP7^3foXAyNr6!9~gw?AGN6qL3NOXIzC=(h>KAZ*ou1KX)MN{ zTxUIIk7>hE)t+m`|IaCCGhM_8yy-TmlV)d}fa>U8tb>ob7U17J zyeY9M_5H`$Z@z3?Mx2XlFl4-4%2HIO-pA>93cL6y3`@70VF7Z)%@I^8n`hVz#Gykx z0vqBq48mg6W-P&WxCymnWvC3*onY_lh`f!>2-N-SP!rjUzUmatQ{eS(t|9LVll-{- zd|rauY!^{ChG*K}{dU-uI1AO$dUS9%a+1xr*d4oO+0XJqJW8hap^oRPIrfunQx5Cj zmWnHGMbt$5U7v(9}EF|9U+HQ(5 zsl=OcA6B1g`#Fm=F%72K&AY%yA)Jc$P!BwcJ@Gdjh@GCWGn|bi!|X)0Z^6^nVNcWm z|AiV*EIUhU-wQv$R7^&PboRwDcsH)ch3LCXK_e}CinEHBa6678Gh8x_sMLd(<7y0< z!CMR8!4Pcm3>y+V;q$7;{@AUE6N7WG0UkxhVlLx7`1s7gZ-CEip`e+bM$I5*7C)(& zjH*9@>Y&MNHV*c{=6DX5VZ}K%BP($<@iy#=b)K~^s1zjYCLP;i8K!#JKhJ3|G0Vve zTO(S7!|(^}i@oOBrFb5j67NSHv#Zz=o4#O==U|K?E_8hj8MFBqOR(=eJAr?qHgClj zZTm!=!t>2=3QF}MY>We6vOkkKsI{Dq%FHWBpJpp|#^m|7!$Q=6)}t4{L}je&%l6xG z1ghU9n1#D=EXJ_&eY+{VKp`Cmk#}Wc2lm7}*aLg8Q`(>p>){q0iu+MBk6dI2(91O& z)qa^9AHZbd-*FTsEw&R_wwU~@gX2^*$KNm%Ba7`?wMNBbP#MTY&2%nmlWlkFJxlC> z>SHYR*{J)Lpl1FiM&mw=!Kx%49r!EUeH%{w2%Y5x`Or2g_M>zk`-OFU)``v84|-mvGg z%33?~IhfCdcW@Fmf77nnQrtm&1BdJSItGJP*7K8!X~@Abx3C`0-oU3ku0%~>>PCK+ z8Bp9N`)k_%tw82|rXPhU8jL`7T!?e=81}+Zn{EB;*oXKgDpSdC+dZ)hwcC%O_Rtk9 z#5!Ayc>w*`9xq`FZ19e4-v{gH{Ewla3s2xtT!S5PYN`FKej6i+f5p}q&U9wsJ=h)h zV_mHBu04)TPy-!;>Srmwhexm{zPQbL2`AyopNvfRF8O!+2y{nBd)Z#@kSF-X|PEY`BLnWc&=-US{5> z;~ zSMN4dMj{T|_eCd6B0hkFvGNg{sS%h!eA`E%Erob?-g->M6bwFQJ4(f=#80ATejT5{ z$m4diEkkwu1&+k}C+vHn08bHrj7{;CFYV9#N7$D*>ZJY5_f4QMiHa{U1G{`>*M1F7 zBQ8fTayoXz>)06MPut85M$Py&)Bty3EBw~I9(KmQupUF*w;IDd>;ct#SpSn}?H5VI zukD(rVqF@pz=62KwbFU}d7gqv)K9{>xDnZBrqegZuszHzR0j8y*>?3V*jI20CQ?7a zbp<}E^M9OzI&Ax`{Q}CuHpG|lDReH{&9wqs5;wbKe};$PJ;dj607idjkK-h~kN9iM z!j|9L50|C5hPdND>@h!w<9WX6_fPxX{x)(X&G+~+uKAZeejR_XGq{G@E0uq=CSg2r z7HS~NQ5m~{>{pZUlYOz>LA|(QFWV)42up}RL7xiVEB2jV`6{2(#M3bo+g`Ijt1GY% z@z2-`lm2bL>z~9>;sdA$pG9r17C+lpa4zclWvqdBa4c5;#l{7{kbkZ9vs8S5C8#wT z{i~hvB8(#5fVc1mo1?SE=*`&0*c)ga;z``_;dpl0+jY6d~K?XihKot8ozikDnF-?4jV9`>aELkvdq zr~Oq7!5qTo*cgj_6m+b1;%dC+#*6u}UqpNmnXF0kcme}_xSS{OYo%s^~E@u{mm2Z^ViCJ8CU6 zDtSz-hj#)d6R+Y&y$4=G4Ji69+i@3MOgtXv;vH;?&j;CwY{o8HrJEFTxzM4C$2^Sd zP!FzH)f4zXnGfJ3;xnkF85rydyl|$YQn&<1;VvA9^+P;nG|oUR=>=5(an)>QR$?|2 zIDzRNA3p@Vj$Wj}rs^K^EOxEo349uTirV#0*YpI=^IlYkwQ6|``^StzEzwB6vozqV zsJ+m&wkNRW^D&nARUD3cQ3H;w<1xHiOfrt*`6jxqZ7>U`5ud|Had=oQj&^ zIn;TMiL@!3jC$|})WFVT8|>!T&6VT&I_kkEFahf~E`6eL-)f;#oQ!N|vNty`BPZL5 z&hvlJx?^o8uV8GtGd3rCT*i23a%yIQH;GH7|89LQq`Q-uk(ck}jC1lPddFsr%NXm7 z%gFTRIr%wGu6Im9MrK;P(|>$+POdl2$r$Ivr8*gT|I^l+R{HmDyFB&0xoTdJ=XGMz zyyH>}GV_z1^!%*M*wPt2o(@lO^3%OpUMD*>i$0=ropCt@*=bHpRz_Z4M)r7nHD06Z z5o@w@{@>QEm{qzrHzS`O#!RD=(mN^BgW>}H(qmeVH!r(+zLTCh+3Q5PO{1JVZ+<>c zF!uTWQBh9mw8v_fYoU?yAU7eJualbZq-JKea&odWr#W%Got%mJBrwna;^=NM8Tsi> z-0)V;<6iGXXMB#vJSE+m?TokGJ5y3~v#HE0{bKZWPe{ACgidj7Iy!9C5TT+>; z3(Ja%{nay{Dm`v{oT&itPohV!WSNH(yTae^P)g6{y=%T6M$RkbwQwmm;Kd0 zkMuA5DbnBjR+xX{j@nhZ*ot=Cy~^Ly+rU5nR-`Aj^w{R-DpY&rzjx7TeDRfVPfW#r zDFg3|EgiOXThA)o!jNb*-~amy5&k~&VuPKSKw1L}=TA86gtB^pzTJk!*J^lbme)M4 z6go-qJeS+;wWVc6{~i0vK;^4tMK1?tQ_R}Nl@&1$Cc#ve^V+WNsaqQL>u2@C{u%`> zXy{K})}ZZ@|Fz(OTUPQY?pzaiNXh>h(_gpwUmDk_xGdBYwf(M8PeLXC%=csbht~%C zN3X5y-SR$Sw?xXz^yCmMPOtv*xlg8|YwpS\n" "Language-Team: Georgian (http://app.transifex.com/sphinx-doc/sphinx-1/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ka\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" @@ -37,104 +37,104 @@ msgstr "საწყისი და სამიზნე საქაღალ msgid "Running Sphinx v%s" msgstr "გაშვებულია Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "პროექტს Sphinx-ის მინიმალური v%s სჭირდება და ამიტომ ამ ვერსიით ვერ აიგება." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "გამოტანის საქაღალდის შექმნა" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "გაფართოების %s მორგებისას:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup', როგორც ის conf.py-შია ამჟამად აღწერილი, Python-ის მიერ გამოძახებადი არაა. შეცვალეთ აღწერა, რათა ის გამოძახებადი ფუნქცია გახდეს. ეს საჭიროა, რათა conf.py-ი, როგორც Sphinx-ის გაფართოება, მოიქცეს." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "თარგმანების ჩატვირთვა [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "შესრულებულია" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "ჩაშენებული შეტყობინებებისთვის ხელმისაწვდომი არაა" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "დამჟავებული გარემოს ჩატვირთვა" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "შეცდომით: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "ამგები არჩეული არაა. ვიყენებ ნაგულისხმევს: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "წარმატებული" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "დასრულდა პრობლემებით" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "აგება %s, %s გაფრთხილება (გაფრთხილებები აღქმული იქნება, როგორც შეცდომები)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "%s-ის აგება, %s გაფრთხილება." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "%s-ის აგება, %s გაფრთხილება." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "%s-ის აგება." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "კვანძის კლასი %r უკვე რეგისტრირებულია. მისი მნახველები გადაფარული იქნება" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "დირექტივა %r უკვე რეგისტრირებულია. ის გადაფარული იქნება" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "როლი %r უკვე რეგისტრირებულია. ის გადაფარული იქნება" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "გაფართოება %s არ აღწერს, არის თუ არა ის უსაფრთხო პარალელური წაკითხვისთვის. ვთვლით, რომ არა - კითხეთ გაფართოების ავტორს და აშკარად აღწერეთ ის" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s გაფართოება პარალელური წაკითხვისთვის უსაფრთხო არაა" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "გაფართოება %s არ აღწერს, არის თუ არა ის უსაფრთხო პარალელური ჩაწერისთვის. ვთვლით, რომ არა - კითხეთ გაფართოების ავტორს და აშკარად აღწერეთ ის" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s გაფართოება პარალელური ჩაწერისთვის უსაფრთხო არაა" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "ვაკეთებ სერიულს %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "კონფიგურაციის საქაღალდე ფაილს conf.py არ შეიცავს (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "აღმოჩენილია არასწორი კონფიგურაციის მნიშვნელობა: 'language = None'. განაახლეთ კონფიგურაცია და მიუთითეთ სწორი ენა. გადაირთვება 'en'-ზე (ინგლისური)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ლექსიკონის კონფიგურაციის პარამეტრის %r გადაფარვა შეუძლებელია. ის გამოტოვებული იქნება (ინდივიდუალური ელემენტების დასაყენებლად გამოიყენეთ %r)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "რიცხვი %r კონფიგურაციის მნიშვნელობისთვის %r არასწორია. ის გამოტოვებული იქნება" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "მხარდაუჭერელი ტიპის მქონე კონფიგურაციის პარამეტრის %r გადაფარვა შეუძლებელია. ის გამოტოვებული იქნება" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "გადაფარვაში მითითებული კონფიგურაციის მნიშვნელობა %r უცნობია. ის გამოტოვებული იქნება" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "ასეთი კონფიგურაციის მნიშვნელობა არ არსებობს: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "კონფიგურაციის მნიშვნელობა %r უკვე არსებობს" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "თქვენს კონფიგურაციის ფაილში აღმოჩენილია შეცდომა: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "კონფგურაციის ფაილმა (ან მოდულმა, რომელის მან შემოიტანა) sys.exit() გამოიძახა" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,291 +231,328 @@ msgid "" "%s" msgstr "თქვენს კონფიგურაციის ფაილში პროგრამირებადი შეცდომაა:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "კონფიგურაციის მნიშვნელობას 'source_suffix' სტრიქონს, სტრიქონების სიას ან ლექსიკონს ელოდება. თქვენ კი '%r' მიუთითეთ." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "სექცია %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "ნახ. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "ცხრილი %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "ჩამონათვალი %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "კონფიგურაციის მნიშვნელობა `{name}` შეიძლება იყოს ერთ-ერთ სიიდან `{candidates}`, თქვენ კი `{current}` მიუთითეთ." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "კონფიგურაციის მნიშვნელობის `{name}` ტიპია `{current.__name__}`, მე კი {permitted}-ს ველოდებოდი." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "კონფიგურაციის მნიშვნელობის `{name}` ტიპია `{current.__name__}`, ნაგულისხმებია `{default.__name__}`." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ვერ ვიპოვე. ის გამოტოვებული იქნება." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Sphinx v2.0-ის შემდეგ root_doc-ს ნაგულისხმევად \"index\"-ს იყენებს. დაამატეთ თქვენს conf.py-ში 'root_doc = 'contents'\"." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "მოვლენა %r უკვე არსებობს" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "უცნობი მოვლენის სახელი: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "დამმუშავებელმა %r მოვლენისთვის %r გამონაკლისი გადმოგვცა" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "%s გაფართოება საჭიროა needs_extensons პარამეტრის მიერ, მაგრამ ჩატვირთული არაა." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "პროექტს გაფართოების %s ვერსია მინიმუმ %s სჭირდება და ამიტომ ჩატვირთული ვერსიით (%s) აგებული ვერ იქნება." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments lexer-ის სახელი %r უცნობია" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "დოკუმენტისთვის \"%s\" აღმოჩენილია ერთზე მეტი ფაილი: %r\nასაგებად გამოიყენეთ %r." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "ამგებ კლასს %s \"name\" ატრიბუტი არ გააჩნია" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "ამგები %r უკვე არსებობს (მოდულში %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "ამგების სახელი %s რეგისტრირებული არაა ან შესვლის წერტილში ხელმისაწვდომი არაა" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "ამგების სახელი %s რეგისტრირებული არაა" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "დომენი %s უკვე რეგისტრირებულია" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "დომენის %s ჯერ რეგისტრირებული არაა" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r დირექტივა დომენისთვის %s უკვე რეგისტრირებულია" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r როლი დომენისთვის %s უკვე რეგისტრირებულია" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r ინდექსი დომენისთვის %s უკვე რეგისტრირებულია" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "%r ობიექტის ტიპი უკვე რეგისტრირებულია" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r ჯვარედინი მიმართვის ტიპი უკვე რეგისტრირებულია" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r უკვე რეგისტრირებულია" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser %r-სთვის უკვე რეგისტრირებულია" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "წყაროს დამმუშავებელი %s-სთვის რეგისტრირებული არაა" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "მთარგმნელი %r-სთვის უკვე არსებობს" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwarg-ები add_node()-სთვის (შემომავალი, გამავალი) ფუნქციის კორტეჟი უნდა იყოს: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r უკვე რეგისტრირებულია" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "მათემატიკის რენდერერი %s უკვე რეგისტრირებულია" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "გაფართოება %r %s ვერსიის შემდეგ Sphinx-ის ნაწილია. გაფართოება გამოტოვებულია." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "საწყისი გამონაკლისი:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "გაფართოების (%s) შემოტანა შეუძლებელია" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "გაფართოებას %r ფუნქცია setup() არ აქვს. დარწმუნებული ბრძანდებით, რომ ეს ნამდვილად Sphinx-ის გაფართოების მოდულია?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "ამ პროექტში გამოყენებულ გაფართოებას %s Sphinx-ის მინიმუმ v%s სჭირდება. ამიტომ მას ამ ვერსიით ვერ ააგებთ." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "გაფართოებამ %r setup() ფუნქციიდან მხარდაუჭერელი ობიექტი დააბრუნა. მან ან არაფერი, ან მეტამონაცემების ლექსიკონი უნდა დააბრუნოს" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python-ის განვითარების შეთავაზებები; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "არასწორი PEP ნომერი %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "არასწორი RFC ნომერი %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "თემას %r პარამეტრი \"theme\" არ აქვს" +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "პარამეტრი %s.%s თემის კონფიგურაციებში აღმოჩენილი არაა" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "თემას %r პარამეტრი \"inherit\" არ აქვს" +msgid "unsupported theme option %r given" +msgstr "თემის პარამეტრი %r მხარდაჭერილი არაა" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "თემა სახელით %r ვერ ვიპოვე. მემკვიდრეობით %r-სგან" +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "პარამეტრი %s.%s თემის კონფიგურაციებში აღმოჩენილი არაა" +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" -msgstr "თემის პარამეტრი %r მხარდაჭერილი არაა" +msgid "The %r theme has circular inheritance" +msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "თემა სახელად %r აღმოჩენილი არაა (theme.conf არ არსებობს?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "აგება [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "გამოტანის ჩაწერა... " @@ -576,7 +618,7 @@ msgstr "ბრძანების სტრიქონში მითით msgid "targets for %d source files that are out of date" msgstr "%d კოდის ფაილის სამიზნე მოძველებულია" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "აგება [%s]: " @@ -585,50 +627,50 @@ msgstr "აგება [%s]: " msgid "looking for now-outdated files... " msgstr "მოძველებული ფაილების ძებნა... " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "ნაპოვნია %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "არაფერია ნაპოვნი" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "დამჟავების გარემო" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "თანმიმდევრულობის შემოწმება" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "მოძველებული სამიზნეები აღმოჩენილი არაა." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "გარემოს განახლება: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s დაემატა, %s შეიცვალა, %s წაიშალა" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "წყაროების კითხვა... " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "ჩასაწერი დოკუმენტის სახელები: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "დოკუმენტების მომზადება" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "აღმოჩენილია დუბლირებული სარჩევის ჩანაწერი: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "გამოსახულებების კოპირება... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "გამოსახულების ფაილი %r ვერ წავიკითხე: ის, სამაგიეროდ, დაკოპირდება" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "გამოსახულების ფაილის %r კოპირების შეცდომა: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "გამოსახულების ფაილის %r ჩაწერის შეცდომა: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow ვერ ვიპოვე - სურათის ფაილების კოპირება" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "mimetype ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "მიმდინარეობს META-INF/container.xml ფაილის ჩაწერა..." @@ -674,470 +716,470 @@ msgstr "მიმდინარეობს META-INF/container.xml ფაილ msgid "writing content.opf file..." msgstr "content.opf ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "უცნობი mimetype ფაილისთვის %s. გამოტოვება" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "toc.ncx ფაილის ჩაწერა..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "%s ფაილის ჩაწერა..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "გადახედვის ფაილის მდებარეობაა %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "ვერსიაში %s ცვლილებები არაა." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "შეჯამების ფაილის ჩაწერა..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "ჩაშენებულები" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "მოდულის დონე" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "კოდის ფაილების კოპირება..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "ცვლილებების ჟურნალის შესაქმნელად %r-ის წაკითხვა შეუძლებელია" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "სულელი ამგები, რომელიც ფაილებს არ აგენერირებს." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "EPub ფაილი %(outdir)s-შია." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "nav.xhtml ფაილის ჩაწერა..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_language\" (ან \"language\") EPUB3-სთვის ცარიელი არ უნდა ყოფილიყო" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_uid\" EPUB3-სთვის XML NAME უნდა იყოს" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_title\" (ან \"html_title\") EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_author\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_contributor\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_description\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_publisher\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_copyright\" (ან \"copyright\") EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"epub_identifier\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "კონფიგურაციის მნიშვნელობა \"version\" EPUB3-სთვის ცარიელი არ უნდა იყოს" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "არასწორი css_file: %r. გამოტოვება" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "შეტყობინების კატალოგების საქაღალდეა %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "%d ნიმუშის ფაილის სამიზნეები" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "ნიმუშების კითხვა... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "შეტყობინების კატალოგების ჩაწერა... " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "გაფუჭებული ბმული: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "სახელმძღვანელოს გვერდების საქაღალდეა %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "ჩაწერა" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" პარამეტრის მნიშვნელობა უცნობ დოკუმენტზე %s მიუთითებს" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML გვერდის საქაღალდეა %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "ერთი დოკუმენტის აწყობა" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "დამატებითი ფაილების ჩაწერა" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfo-ის ფაილების საქაღალდეა %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "კონფიგურაციის პარამეტრის \"texinfo_documents\" მნიშვნელობა მითითებული არაა. დოკუმენტების ჩაწერი არ იქნება" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" კონფიგურაციის პარამეტრი მიუთითებს უცნობ დოკუმენტზე %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "დამუშავება %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "მიმართვების ამოხსნა..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " ( " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "მიმდინარეობს Texinfo-ის მხარდაჭერის ფაილების კოპირება" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "შეცდომა Makefile-ის ჩაწერისას: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "ტექსტური ფაილების საქაღლდეა %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "შეცდომა '%s' ფაილის ჩაწერისას: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XML ფაილების საქაღალდეა %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "ფსევდო-XML ფაილებს საქაღალდეა %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "აგების ინფორმაციის ფაილი გაფუჭებულია: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML გვერდების საქაღალდეა %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "აგების ინფორმაციის ფაილის წაკითხვის შეცდომა: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "ზოგადი ინდექსი" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "ინდექსი" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "შემდეგი" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "წინა" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "ინდექსების გენერაცია" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "დამატებითი გვერდების ჩაწერა" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "გადმოწერადი ფაილების კოპირება... " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "გადმოწერადი ფაილის %r კოპირების შეცდომა:%s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "სტატიკური ფაილების კოპირება" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "სტატიკური ფაილის %r კოპირების შეცდომა" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "დამატებითი ფაილების კოპირება" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "დამატებითი ფაილის %r კოპირების შეცდომა" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "აგების ინფორმაციის ფაილის ჩაწერის შეცდომა: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "შეცდომა %s გვერდის რენდერისას.\nმიზეზი: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "ობიექტის ინვენტარის დამპი" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "%s-ში არსებული ძებნის ინდექსის დამპი" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "არასწორი js_file: %r, გამოტოვებულია" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "მითითებული math_renderer %r უცნობია." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path ჩანაწერი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path ჩანაწერი %r გამოტანის საქაღალდეშია" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path ჩანაწერი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path ჩანაწერი %r გამოტანის საქაღალდეშია" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "ლოგოს ფაილი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ფაილი %r არ არსებობს" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s დოკუმენტაცია" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX-ის ფაილების საქაღალდეა %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "ინდექსი" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "გამოცემა" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "ენისთვის %r Babel-ის პარამეტრი ცნობილი არაა" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "მიმდინარეობს TeX-ის მხარდაჭერის ფაილების კოპირება" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "მიმდინარეობს TeX-ის მხარდაჭერის ფაილების კოპირება..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "დამატებითი ფაილების კოპირება" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "უცნობი კონფიგურაციის პარამეტრი: latex_elements[%r]. გამოტოვება." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "უცნობი თემის პარამეტრი: latex_theme_options[%r]. გამოტოვება." @@ -1152,15 +1194,15 @@ msgstr "%r-ს პარამეტრი \"theme\" არ აქვს" msgid "%r doesn't have \"%s\" setting" msgstr "%r-ს \"%s\" პარამეტრი არ აქვს" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "დავალების ნომერი დადებითი რიცხვი უნდა იყოს" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "მეტი ინფორმაციის მისაღებად ეწვიეთ ." @@ -1252,257 +1294,264 @@ msgid "path to output directory" msgstr "ბილიკი გამოტანის საქაღალდემდე" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "თავიდან ასაგები ფაილების ჩამონათვალი. გამოტოვებულია, თუ მიუთითებთ პარამეტრს -a" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "ზოგადი პარამეტრები" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "ამგები. (ნაგულისხმევი: HTML)" +msgid "builder to use (default: 'html')" +msgstr "" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "ყველა ფაილის ჩაწერა (ნაგულისხმევი: მხოლოდ ახალი და შეცვლილი ფაილების ჩაწერა)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "შენახული გარემო გამოყენებული არ იქნება. ყოველთვის მოხდება ყველა ფაილის წაკითხვა" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "კონფიგურაციის ფაილები გამოყენებული არ იქნება. მხოლოდ -D-ით მითითებული პარამეტრები" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "კონფიგურაციის ფაილის პარამეტრის გადაფარვა" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "მნიშვნელობის გადაცემა HTML ნიმუშებში" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:182 +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "კონსოლის გამოტანის პარამეტრები" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "დიაგნოსტიკური შეტყობინებების სიხშირის გაზრდა (შეგიძლიათ, გაიმეოროთ)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "stdout-ზე გამოტანილი არაფერი იქნება. მხოლოდ გაფრთხილებები, stderr-ზე" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "არაფრი გამოტანა. გაფრთხილებებისაც კი" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "ფერადი გამოტანის ჩართვა (ნაგულისხმევი: ავტომატურად-აღმოჩენა)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "ფერადი გამოტანის გამორთვა (ნაგულისხმევი: ავტომატურად-აღმოჩენა)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "გაფრთხილებების (და შეცდომების) მითითებულ ფაილში ჩაწერა" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "გაფრთხილებების შეცდომად აღქმა" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "თუ მითითებულია -W, გაფრთხილებების მიუხედავად სამუშაოები მაინც გაგრძელდება" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "გამონაკლისისას Pdb-ის გაშვება" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "-a პარამეტრის და ფაილის სახელების ერთად მითითება შეუძლებელია" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "გაფრთხილებების ფაილის %r გახსნის შეცდომა: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "დოკუმენტაციის დაფარვის შემოწმება" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "მათემატიკის ჩასმა, რომელიც PNG ან SVG გამოსახულების სახითაა დარენდერებული" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "ბრაუზერში MathJax-ის მიერ დარენდერებული მათემატიკის ჩასმა" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "გთხოვთ შეიყვანოთ ბილიკის სწორი სახელი." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "შეიყვანეთ რაიმე ტექსტი." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "შეიყვანეთ %s-დან ერთ-ერთი." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "შეიყვანეთ 'y' (დიახ) ან 'n' (არა)" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "მიუთითეთ ფაილის სუფიქსი. მაგ: '.rst' ან '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "მოგესალმებით Sphinx %s-ის სწრაფი მორგების პროგრამა." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "არჩეული root ბილიკი: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "შეიყვანეთ დოკუმენტაციის ძირითადი ბილიკი." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "დოკუმენტაციის ძირითადი ბილიკი" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "შეცდომა: არჩეულ ძირითად ბილიკზე აღმოჩენილია არსებული conf.py ფაილი." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart-ი არსებულ Sphinx-ის პროექტებს თავზე არ გადააწერს." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "შეიყვანეთ ახალი საწყისი ბილიკი (გასასვლელად უბრალოდ დააწექით ღილაკს 'Enter')" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "კოდის და აგების საქაღალდეები განსხვავდება? (y(დიახ)/n(არა))" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "სახელის პრეფიქსი ნიმუშებისა და სტატიკის საქაღალდეებისთვის" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "პროექტს სახელი აგებულ დოკუმენტაციაში რამდენიმე ადგილას გამოჩნდება." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "პროექტის სახელი" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "ავტორის სახელები" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "პროექტის ვერსია" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "პროექტის რელიზი" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "პროექტის ენა" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "თქვენი მთავარი დოკუმენტის სახელი (სუფიქსს გარეშე)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart არსებულ ფაილებს თავზე არ გადააწერს." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "შევქმნა Makefile? (y(დიახ)/n(არა))" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "შევქმნა Windows-ის ბრძანებების ფაილი? (y(დიახ)/n(არა))" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "ფაილის შექმნა %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "ფაილი %s უკვე არსებობს. ის გამოტოვებული იქნება." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "დასრულდა: საწყისი საქაღალდეების სტრუქტურა შეიქმნა." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "ჩუმი რეჟიმი" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "პროექტის საწყისი საქაღალდე" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "სტრუქტურის მორგება" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "თუ მითითებულია, კოდის და აგების საქაღალდეები ცალ-ცალკე იქნება" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "თუ მითითებულია, აგების საქაღალდე კოდის საქაღალდეში იქნება" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "პროექტის ძირითადი პარამეტრები" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "პროექტის დასახელება" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "ავტორის სახელები" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "პროექტის ვერსია" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "პროექტის რელიზი" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "დოკუმენტის ენა" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "წყაროს ფაილის სუფიქსი" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "მთავარი დოკუმენტის სახელი" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "epub-ის გამოყენება" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "გაფართოების პარამეტრები" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "%s გაფართოების ჩართვა" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefile და Batchfile-ის შექმნა" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "makefile-ის შექმნა" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "makefile-ის არ შეიქმნება" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "batchfile-ის შექმნა" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "batchfile-ი არ შეიქმნება" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "პროექტის ნიმუშები" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "ნიმუშების საქაღალდე ნიმუშის ფაილებისთვის" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "აღწერეთ სანიმუშე ცვლადი" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "არასწორი ნიმუშის ცვლადი: %s" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "აღმოჩენილია დუბლირებული სარჩევის ჩანაწერი: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "სექციის ავტორი: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "მოდულის ავტორი: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "კოდის ავტორი: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "ავტორი: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,82 +1928,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "პარამეტრები" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "დაბრუნებული მნიშვნელობები" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "აბრუნებს" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "დაბრუნების ტიპი" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "წვერი" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "ცვლადი" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "ფუნქცია" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "მაკრო" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "სტრუქტურა" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "გაერთიანება" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "ჩამონათვალი" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "დამთვლელი" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "ტიპი" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "ფუნქციის პარამეტრი" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "სიახლე ვერსიაში %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1966,346 +1943,423 @@ msgstr "ცვლილებები ვერსიაში %s" msgid "Deprecated since version %s" msgstr "მოძველებულია ვერსიაში %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:71 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:82 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "შაბლონის პარამეტრები" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "ისვრის" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "კლასი" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "კონცეფცია" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "შაბლონის პარამეტრი" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s () (ჩაშენებული ფუნქცია)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s () (%s მეთოდი)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s () (კლასი)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (გლობალური ცვლადი ან მუდმივა)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s ატრიბუტი)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "არგუმენტები" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "ისვრის" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "აბრუნებს" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "დაბრუნების ტიპი" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (მოდული)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "ფუნქცია" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "მეთოდი" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "კლასი" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "მონაცემები" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "ატრიბუტი" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "მოდული" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "არასწორი math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "ცვლადები" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (დირექტივა)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "გამონაკლისები" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (დირექტივის პარამეტრი)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (როლი)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "დირექტივა" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "დირექტივის-პარამეტრი" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "როლები" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "%s %s-ის დუბლირებული აღწერა. სხვა ასლი %s-შია" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "პარამეტრები" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "დაბრუნებული მნიშვნელობები" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "წვერი" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "ცვლადი" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "მაკრო" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "სტრუქტურა" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "გაერთიანება" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "ჩამონათვალი" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "დამთვლელი" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "ტიპი" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "ფუნქციის პარამეტრი" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "შაბლონის პარამეტრები" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "კონცეფცია" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "შაბლონის პარამეტრი" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s () (მოდულში %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (მოდულში %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (ჩაშენებული ცვლადი)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (ჩაშენებული კლასი)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (კლასი %s-ში)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s () (%s კლასის მეთოდი)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s () (%s სტატიკური მეთოდი)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (%s თვისება)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python-ის მოდულის ინდექსი" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "მოდულები" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "მოძველებულია" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "გამონაკლისი" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "კლასის მეთოდი" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "სტატიკური მეთოდი" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "თვისება" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (მოძველებული)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (დირექტივა)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (დირექტივის პარამეტრი)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (როლი)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "დირექტივა" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "დირექტივის-პარამეტრი" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "როლები" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "ცვლადები" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "%s %s-ის დუბლირებული აღწერა. სხვა ასლი %s-შია" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "გამონაკლისები" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "გარემოს ცვლადი; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s ბრძანების სტრიქონის პარამეტრი" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "ბრძანების სტრიქონის ვარიანტი" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "სარჩევის ელემენტებს წინ ცარიელი ხაზი უნდა იყოს" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "სარჩევის ელემენტები ცარიელი ხაზებით უნდა გამოყოთ" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "სარჩევის ფორმატი არასწორია. გადაამოწმეთ შეწევა" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "სარჩევის ელემენტი" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "გრამატიკის კოდი" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "მიმართვის ჭდე" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "გარემოს ცვლადი" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "პროგრამის პარამეტრი" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "დოკუმენტი" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "მოდულის ინდექსი" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "ძებნის გვერდი" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "დუბლირებული ჭდე %s. სხვა აღწერა %s-შია" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "დუბლირებული %s აღწერისთვის %s. სხვა ასლი %s-შია" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig გამორთულია. :numref: გამოტოვებული იქნება." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "ბმულს წარწერა არ გააჩნია: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "არასწორი numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "არასწორი numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "აღუწერელი ჭდე: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "კონფიგურაცია შეიცვალა" msgid "extensions changed" msgstr "გაფართოებები შეიცვალა" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "აგების გარემოს ვერსია მიმდინარე არაა" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "საწყისი საქაღალდე შეიცვალა" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "გარემო არჩეულ ამგებთან თავსებადი არაა. აირჩიეთ სხვა დოკუმენტების ხის საქაღალდე." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s-ში დოკუმენტების სკანირება შეუძლებელია: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "დომენი %r რეგისტრირებული არაა" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "დოკუმენტი არც ერთ სარჩევის ხეში ჩასმული არაა" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "აღმოჩენილია თვითმიმართვადი სარჩევის ხე. გამოტოვებულია." @@ -2374,39 +2428,39 @@ msgstr "უცნობი ინდექსის ჩანაწერის msgid "Symbols" msgstr "სიმბოლოები" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "აღმოჩენილია სარჩევის ხის წრიული მიმართვები. გამოტოვებული იქნება: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "სარჩევის ხე შეიცავს მიმართვას დოკუმენტამდე %r, რომელსაც სათაური არ გააჩნია. ბმული არ შეიქმნება" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "სარჩევის ხე არ-ჩართულ დოკუმენტამდე, %r, მიმართვას შეიცავს" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "გამოსახულების ფაილი წაკითხვადი არაა: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "გამოსახულების ფაილი %s წაკითხვადი არაა: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "გადმოწერილი ფაილი წაკითხვადი არაა: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "შეიქმნებოდა ფაილი %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "ბილიკი მოდულიდან დოკუმენტამდე" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "არსებულ ფაილებზე გადაწერა" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "სკრიპტის ფაილების შექმნის გარეშე გაშვება" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "\"_private\" მოდულების ჩასმა" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "სარჩევის ფაილი არ შეიქმნება" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "ფაილის სუფიქსი (ნაგულისხმევი: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart-ით სრული პროექტის გენარაცია" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "როცა მითითებულია --full, module_path-ი sys.path-ის ბოლოში მიეწერება" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "პროექტის სახელი (ნაგულისხმევი: ძირითადი მოდულის სახელი)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "პროექტის ავტორ(ებ)-ი. გამოიყენება, როცა მიუთითებთ პარამეტრს --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "პროექტის ვერსია. გამოიყენება, როცა მითითებულია --full" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "პროექტის რელიზი. გამოიყენება, როცა მითითებულია --full. ნაგულისხმებ მნიშვნელობაა იგივე, რაც --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "გაფართოების პარამეტრები" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s საქაღალდეს არ წარმოადგენს." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "სექცია \"%s\" მიიღებს ჭდეს \"%s\"" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "არასწორი რეგულარული გამოსახულება %r %s-ში" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "'%s' სწორი pyversion-ის პარამეტრი არ msgid "invalid TestCode type" msgstr "არასწორი TestCode ტიპი" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "გარე Graphviz ფაილი %r ვერ ვიპოვე ან მისი წაკითხვა შეუძლებელია" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "\"graphviz\" დირექტივა, რომელსაც შემცველობა არ აქვს, იგნორირებულია." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format უნდა იყოს ერთ-ერთი სიიდან: 'png', 'svg'. მაგრამ არის %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[გრაფიკი: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[გრაფიკი]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s-ში)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "განრიგის სია" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<<საწყისი ჩანაწერი>>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "საწყისი ჩანაწერი" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "მოდულის კოდის გამოკვეთა... " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "მოდულის კოდი" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "გადახედვა: მოდულის კოდი" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "ძირითადი კლასები: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "ატრიბუტი %s ობიექტში %s აღმოჩენილი არაა" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "მეტსახელი TypeVar(%s)-სთვის" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s-სთვის მეთოდის ხელმოწერის მიღება შეუძლებელია: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s-ზე აღმოჩენილია არასწორი __slots__: გამოტოვებულია." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r-სთვის ნაგულისხმევი არგუმენტის მნიშვნელობის დამუშავების შეცდომა: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "%r-სთვის ხელმოწერის განახლების შეცდომა: პარამეტრი ვერ ვიპოვე: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "სახელის %s დამუშავების შეცომა" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "ობიექტის %s შემოტანის შეცდომა" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ფაილი ვერ ვიპოვე: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "საკვანძო სიტყვების არგუმენტები" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "მაგალითი" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "მაგალითები" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "ჩანაწერები" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "სხვა პარამეტრები" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "იღებს" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "ბმები" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "გაფრთხილებები" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "არასწორი მნიშვნელობების ნაკრები (აკლია დამხურავი ფრჩხილი): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "არასწორი მნიშვნელობების ნაკრები (აკლია გამხსნელი ფრჩხილი): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "ყურადღება" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "გაფრთხილება" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "საფრთხე" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "შეცდომა" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "მინიშნება" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "მნიშვნელოვანი" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "ნოტი" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "ასევე იხილეთ" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "რჩევა" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "ყურადღება" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "სარჩევი" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "ძებნა" @@ -3341,34 +3400,22 @@ msgstr "შემდეგი თემა" msgid "next chapter" msgstr "შემდეგი თავი" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "ძებნა" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "ძებნს შედეგები" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "სწრაფი ძებნა" @@ -3405,20 +3452,30 @@ msgstr "C API ცვლილებები" msgid "Other changes" msgstr "სხვა ცვლილებები" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "ძებნს შედეგები" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "ძებნა" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "ძებნის მომზადება..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "გვერდითი ზოლის გაფართოება" msgid "Contents" msgstr "შიგთავსი" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "ნაკვალევი [%s] მიმართული არაა." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "ნაკვალევი [#] მიმართული არაა." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "%s:%s მიმართვის სამიზნე ვერ ვი msgid "%r reference target not found: %s" msgstr "%r მიმართვის სამიზნე ვერ ვიპოვე: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "დაშორებული გამოსახულების მიღების შეცდომა: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "დაშორებული გამოსახულების მიღების შეცდომა: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "უცნობი გამოსახულების ფორმატი: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "გამოტოვებული" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "შეცდომით" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "უცნობი დირექტივა ან როლის სახელი: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "უცნობი კვანძის ტიპი: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "წაკითხვის შეცდომა: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "ჩაწერის შეცდომა: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "ნაგულისხმევი როლი %s ვერ ვიპოვე" @@ -3613,27 +3670,27 @@ msgstr "ნებისმიერი ID, რომელიც %s კვან msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "გამოსახულების ზომის მიღება შეუძლებელია. :scale: მოხდება პარამეტრის გამოტოვება." @@ -3650,13 +3707,13 @@ msgstr "ძალიან დიდი :maxdepth:. გამოტოვებ msgid "document title is not a single Text node" msgstr "დოკუმენტის სათაური ერთი ტექსტური კვანძი არაა" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "სქოლიოები" @@ -3675,20 +3732,20 @@ msgstr "ზომის ერთეული %s არასწორია. msgid "unknown index entry type %s found" msgstr "აღმოჩენილია ინდექსის ჩანაწერის უცნობი ტიპი %s" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[გამოსახულება: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "წარწერა ფიგურის შიგნით არაა." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "განუხორციელებელი კვანძის ტიპი: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 42ab77783c0c0bc81e0a8e0c5e8230f067450a9c..49dcb8031b4d14452bc5ec4cb86af75def932e92 100644 GIT binary patch delta 11720 zcmYM)30ziH{>SnA00JrqBC7~IprWz~2qGZjf@|)$FKKC5ZkdxQE?o;N(li72GRf4+ zQA^1bQ%B9rrDeu#5*u~2v?g=OrP9p*=gYaT*S}Y zmwhhCYpKOQM?5U65snR2^#A{CO0uk%U6!>OU+12T6wCUB%Lh{}t26!E(kyE#@$c!D zH4!JYvMhi67Hi>UOu(zS2*WZgD-SndmSx%2_cXfE(J0fh^6?3b!}VAj52G(0$EJ7| zHBeV;%ZkBhjKy}S7mmgTScLU)CI;ebsOPQ5y7(S8;Qdx5jZiwiK;3u_>)~~D<6o!; z#V}lbFb(yfJal7MEW{@<6nA3>JmJJ4ZA^a>>iL~83@WYo-BQL`yxB(;a zm=j;YDq_EE%OacBA=H5Gp$~fJm<-fIR>cZ-?1E9mGcX#LVOQLawnp-RMi7SNS{BP{ zHAlU8C~9e@;d0!IkK>@WmPOO5LM_1^48af)et;^nZ5WIDkmOhwQ8g0D&B{mz)WEtUWoC^+H!eYa zetW)c*5orf8q#qRWAHlaMFH*248pNDaUALe&p0l}DB?ZHa$9FnHPE1gDdGg|PuvSt zLlx+a+prE+*)$?)9CW;ZdeNV#4?fb7ipIAw03TvJ26QrO-5Lvs+hR9-0UyDm7>=P_ zR3=)YCX|J2Agev9*6inKXies$Mz|7{%D*G4V117&rnt`LMFWsASSwMr@*O6le;3vr zb5X@P4x8bd7>A!Z{g<7%Ar+|lv+`&(=7t&QgKuFhu0w9H4xyIB#q``5iz=#)sOvpZ zDSrjErf;KWwh29OACe5~Gt@!k)7@N8M=$OFE;L%XNE@bbgWbctU<)eViM8+ws+fLp z^d!$D$BIC`@KO99PDO3!kv&ZY#-py6;j6d-hhu6lYKQk*uc?6>QA=F9@hP@g}Fb+Ov%zl?S=9k*yS$JoB+!95%Y zqWVW;Aij!TxC)2i8dPTPp_b0-XIV+$i=kvR6N8C+Qpth%82aN>)N|+dC;z@QKA=OX z-G-XkVT{KUsA9W^Phno6$-sNaYFX8&ecfb$$-q#@V${L5(s3&m6CXh>MW=zL=m!rZ z|0C%rqC*2Xh#F}%Ds?|&0RE0a=sU>7k*K0g#3tAW_26ewpDRUgT#B0DTd3!*M@{e( zRL1t(G_)p1P^mfPT)2c<)1OfII*nu78Qj&^hEI*00FFw$+opkU+P#J5<^t6OyFcN2C94xC-0iO;qYrip)St(bk%k(Wr&1Q2Vz6 zRjprP2%bZ4yp2cjKI%cAkK=m-W1ci$DjQLszknKuKYLc6Yk{h%RMh+0I&r~M72FVVur>}vZO>6S z8YfO5{~GaEbfn`w%*5o0mPLJ8V=x2vVK2Oc&9T!Y^CQ$m)IdH)rTPdeV=m6&HW-Fl zn!cz3jKik*3~J!ZZ5ldYwmW`~b%{@5JpLD(pzqUs(O@#_gI!TGdjex{E_T2QRFz-E zWXxl$MB@Z(g!54Yeh*{O-c3UzJ%_4+uxCt)qEP!a0kuT!P&4d;t?_xx#qHP~Z#r@A zRP(hw9lO!L4Yd^au`6c&&18Cx(Y8LKQI89kP^tbEm9l2fni01{#lx`^PQ`Tm1eKAW zP&4zKW-{Z(aN>5TnGePW_#6h|dEizWuQCixh1G2T!L=x|7|pa@dRqke#9^gondC4f@#E^ zQ7@Q|A-EQ`Yj$E^+>aV)P_Y?6C#+9A9yP()7=Y_h8QYGw8pmmOh)VI91T!FUtH(VKMZ#W9YL*fb*On2s^{ z25O&f#WwgU_QKmpSy&zCnw0KD71L4FlKlsD($#&z%s2?Ogvr_1*AC;=S7tI*^CDMx{Ov<8c6LX0uQuUyUvB2x{$bImRw9_xHih z^goAwxEm96KW5==jKieY$SCi(`p{6SW}rs6#EG||Zu}ZG^P8xm`VDJ#%|c@Vs>+K| z173u=xE;OmrsMCZ=RHJCC~gt???$75hHhMljd2P3;7%;SeVB>0UN>QicpL^0&q3X{5LE*es9N~~m4Wk^f!|{=Ml3TEu~TSh?FZl(9FAI}e>nYT zurBchY=&1c2ZNWJRQAF4#8Xf;vlX?ys!#(ujT+ETsF??@FmWyp*8YE-MmsL-!Yup) zmD;qGW?=bPo45-q#eGo^nuDqMK5EyTK`qU1s24}AGJmv6bv%s9^yoK@Wf-FUe~`uq zE>vSAX1!(hc_BVZY-2i}!%VEd+QeN^XZcKwz?G;}SEBCQiCU^_s0?_#ZHl)AD(-~| z+W*he(2Lh#E&LP{aX%*GFQ}PCt}*v@K<$c=jy8r6zvIL^FqHTVs>p7jcFiA7993a5 z6pwaaE@ab)#`&0yA7CzCLY;Im@0hjij!JDm)C|UAI4*EphnmP9)PT-lBfRch_giZ+ z)fDxd{I%pij7EPtJDCVu>#h%P!0}mt){D5N><2SO^xPSHE87%hNWVY9D zs9N#bY%*65NuJdf``}sZj)_~$4=~fV*foE&u)d)qjtj9owLTW0KMuka9E-77j!keo zw!muCl6ie(22cm}`7p;8r~&1oc2Q?kX8NHrFwUl-56nazB(I?x-*n>Ls1F`<{5NVJ zU&5&vzSR`j0vtrV26gb0 zW<4;23-eF|s={%29reJ$yG$w{#a6^qQ7_(rd3YCfU&g0q`{iObaeqw1*Dwh8qRxeX zp+EI!{XioTZ=oI#v)dF+JdPnwMJ>e=$1hO>@Y=(}u?;HK3s3|97&Y+!p^CNtUh~}P zsA7B`Bd`>0Rq_26Cy%nuIl;^V|W<7n*tnfYn?Lu^NU(}`0L znjbi(Vjlh5Q5m|0-LTo`CZ2*t#Op8~>mFj7N=f=5bEdb&eB!53OY$LV?arb%`hQ^_ z7>rGcN21P&5>%$%K;8E)4#kbw9lZ{ls_%`uUWCJ3{GwyiP>~!yVlH?bH9z^(M%~yO zLvbJ~WfO4-&UO0FU|Sw^!-Gy^O^Wp*L1#kDvEJAXxe;U^f4_Gub=!5y4|eqWoJ zy@XN3f5%RE1eGcOZ}ev~W`k~=h%<2^PDI~-nv6_CReOmOFLPXn$@FhSiq*C*(9ldn z|7AWHg|U>NZjjKo<^|8i_d{5EPys!$I&icjLV&h-w}<~v~o4x@jZ6CXg; z!dFgw0rmW!t6Bd98a`*u1Jm(!;`XQ|_$O*Wq2HN(or1-z@kG=BF8{~O^foGE_nkQC zoav81^}BHzW}#|mGp1tndGeo4qtAKsSFKl3Yr4;guj5$a_zV0V9724_rjbdb?f2$eZ7MD!UX7D5;|Fsvtwr5; z3X`zzWpiS-LCxf4Y>7Ki6S{(}F!qYc)Ij7cvc}-knD`^V6`}nmjrlYJeljUrg`ULk zpbxG`y`RSFFat7mBbm4;M zFQ&M9pbnnls1Fn)|5|hTA1%e?YnHVFPhd}+c-;)33L6q%KwrF%0qAwZeD4RNAF&&C zJ-J4kb*C|jj(psSn^7q&x@l%qf%@Qi48g0|7(IS9FN{ZR!w#5(gD@Q5KuusH2I5xK zdk&zAKJ^yw;r-Td8k)&cd=f9>BlyT|{!om|QEOlOj`_OH#|YvzsLxelOZ2{L;?}6R z1nXcWHpjh~hF7pYM*PP5tC2_}7V}VRI|{XiYfulmf|^;_?W5m|BGi)4yT|^oP2(6H4e%5yRX?Hn?_m~t-8Ua-i^@z1j>K=A zIQdWWGh;Chr~e>!NB0ABj*NHw2s_e$7xljEzsP?Mjb4A55td>U@oH>{pW@?q8hc>& zLvz;8L#1>hw!jmp3_ie2jImrb@j%Dv*o6L-PP`X85MQuqXrys2S4|O3L{;qz*dE_N zW#TxhXuiW%=;Pt4IT>?N6DY*?xCnLsH>ek!L1i@3(^d29dy?Y-R0izXG_=NxQ6t=k zG57=KV=XUN%@TCRNa8uDs$PjBumUxp2bhg%wOlnv^8`#ME=CPt6Dm`CFcq&L8MCc$ zZtEPw+q6TmhqtUmvnMgBKk@Z9sb2(~h z&SEasuj8VKZPuQKisEIA!y~Awy^3KNQP(^;4W|?L#i4i@mFhS@lc6M3JQn?NGHT$n zQJGxi_%$k%_55At`#*t(Qra0cvYx0Hlwt*5L>(|C_4oj;K+U)k^|>n;kJqp%h6K23 z&V^jm{x3z{Uyft(3oOE`G zi<+r#kgMjG(1xh%&!C=bV{6>x^k2e3#5aRncFng?w+617pJ;ZYzJAYOTl5V!FX)VU z#M7`4D^W}4!yg576!*Y1oQx{63Jk}is9L&&%0P4eUkQ5d2poR~_QVdTgJ=;d1J$TnsS{z0!wBLWY=#3+OEeq%;=8CCxNXyL(+F&6 z4vaL^wkbq?;APazHltp2-nkwSY3}QYdcic*QM?+pM6O0=#v!QBbw|}kF>3p*L1o(h zCk>_WA?n4Aqs%TCgsSFZRE?CNigUf=e^E1ziq`c@-@F-?$|1Y7T8GeoZ@rH9lr^aU66{9||2s`0H)ROo%F*D6U9X#Do z+jAUh<}YG*d<`4nY1DnU9D|xV`#+6_j^3WAZS)Lkh9#&O&PSzqDJr#Jqt^I4)RNtB z;>Pi2pjoJWJ_+4;9909iP|t1L%pBDTXlq-HrJ=Q4flBd5sA}JjA^0t7J6%Intxt1v zUt?62XP{ot8+A}Uk9tu#w!>AZ44gq_?yhsac?i(1H#&f78c!;X@hKZ&I+M||m7CwPnu{VY#*`{iXlFW?WM?J6#HG|Jk zOLNrmI_i5rIN8)p9%@FTP#Jpz58(Tb6H-hDQd$}(p%2$L;WYf%rlA)kq?(!b!3o6W zn2ise{_HgKtv3gg=|6^==^v;82dBGg{?ZYRD&}#hef}zHfV)t;;3{TeWGj;)yO4$+ zP>dN^g4#Aao%j~U6F1K=Mc4;*gqETkKSzDLT}G{Oe5R}B&upDg`@RnJ-V`C3%3QN@^;Ws0!?b$v9dSYJS`{c_Zga(htQ z?kwta_fSRLpp6FLMe((%+?Bk!ad~mSjLJj(DkCbZCfs*bhD|Q=C_gtPvNHUcrHv{t zF6`q~Ii~DgSLMhh%UtCJ%L*&6EW6=R>9Z=wyYlslBcA0Y>lRk#tWWXq&qz+qNKVUe zr?<*U&#IjEUZKk~BPF%+*!!1~$`70xP?>xBc1-1*yEz_}J^$$HSsw8qy>jw{kxh04 z#<_;p+OegXE7oJj@C28q$MTIyuAw`6Cc74S?ubZpP4iiPJlhqs!zbJ2S8Ms;cCHmW KTIIWPJpK<;HO^=N delta 13776 zcma*td0bW1-pBEMRGeo7K}5F*iV6rK&hwOGnwE-bg>X=mDF%n8qekWxZ<>grqM=@iz|2hVy>;{Xe9zi-pXc?ue>}Z>`QB^oz1Q$tzqQT*J8`X6 z^%6hNSIuh`Tl{yvhGn(Jsz8fs* z!YSXvBa~bBv8;If6g8mweJ!gF2BIR+23Z{|+;K97QeK8_a0lLjZ=**eY1GfMnqvgU zVlNEAG}O{Of$Q)?oQbI{An#i5qn5yLfMo?>1hP6-U$ij?6{#Y}O{mE3L@nvT0mPqc z>ow z8K`93kG1hltdH+|xKOCiI9@|_)NrVI@m_p@@(b7mn+&t84%im8)+3NV)>!@;iBIDg zJdZ)xVYrFJK-7fpKsKB;0hMc>rCexDHlRkh8x_h|kma>*ppvQE2-8stGDd4RDp#s7 z8bisbE;t62ob$0GK96DeiBo^mDR*YH(j{OaM~ zQ04c~4{xE8>EDk2V@*Ulp*qaON?d{sF=L#Gz(c6}Tk$V=5bwo7taB*+Tcx_dmr+ab zIVNHyDiXuSo3&3xPFrgp*2mqbnH@ky=pUGgK@&Kd@k!J`PGS>0j}5TWslSPyXew&n zfjZui{GI_U5y%0&AUz3H%2920;b^t?1mSS<+TFtG5h>}R7BP|9zY#* zXB?|=A>~?=iN8M=k4-kaU^UL5yafaBHfp8;Q%op3ph6js&2gwxo{UQ3R1C-EsCM_E zmf#rH##5*XeuirI?;b8R!=F$g`wg{5wWgYEZi=dJgPKtXRL3Jw4JKj>d;s-cJ~qb1 zI1*Q(&X;qjr2YlTU+XriU(XmaO(U6%8rdui#BA(>Pof$w$GP|#>d5ZGf@>giP&0oN zqgmrE*o^W=q__tD4QhZtpxXZ(b-&JZUxYkXFc-9GMI-N8Phw}hi1FBn_2`O&F%lod z7~Fsp@O{k2R`;0*6{2>{^QeR8Bx*^np^X9eli1h;r)mF}a=}isZXtPOjd;L>Xd^~Y zzKm_LQ4)j0Xk-#r1#0HaW}1DTfGW>GCF5eJ{y4Uy{4@5)fMoMoF$wF@zg5V^1}w%D zjO8!Vz$(UhSdCii6oy?B=VC3)LL2k&3>KpzHYe3A;bsh>T!CTuG4{k8*bk#-vHl8u z8W&2AV^{}Iq92|`?cXm@IZ}7F*%iT9n{rotAA6wM(Vkom(=Y)qq23RfV+Jx3^Nf{_1ePQ{h3C3$ZR1p_Zl;3(<=MaXy)-gX<7#|6jre7?f_3EgVBB_eLe@6x0Of zU~haFTVX{y@vq0lDJmM`d3*pbV-$|eFdgJ0%V+IE&8$HtA3Qi1yW?gYho4|1w#zbK zu|}h^e>E!fJ5lG#*Vqex@o=H-7DEbaAj2^N$KwN-kDAG+*amN46ZC)3*d8_Wc~o8uL1iN9hC z^j~1sI1;s=@4}|I616mC7>oN++w>dMQhbkHQJ*|oidgJS|JE2Tw084QIj{+P<4#n= z-=Nm;I@;LuAv2ITjHWySHNZR!#1$Ba&thjhivegoY<5*3PN3KpJsN2?7aG78Y=-Zl zviLk|Ml~NXA@g^PMJ4GtbYm`V!E>l3dH7K?^ZlszD=-n?#=hA0F>{39`xx<8$d^+Q zguAg7zUe%00o7nb!qf!^qskem0d955$FU7%YmpgPThtN`#}G`!shE$W@k7+o1TW@A z&7{p@^Km!~wZ`L714==4{HWt@45oY*+v1O?C2O+8?22I2IWQ5)SE~#a(ZI(|E=8i2 ztS{;$O!IJ|8E2!`un-61vsfQ5p=NdsM`4o!b3YOF-bU0C9z?DEWz??u9q+^uPnb0? zMkVuR)RMf2G3a^2xp55@+L}wv7mr@36L18^W3E%b6Z=!HKyBBbu{HL4(tHXgq6V}W zwL~wWlJN^v_BUE)+U<|+wEyRDp&70~t=03WnZ1kZ=pt$f?7x_X$Kqtlk2;<~g}lph z^ApoT45xeo{qQGLF5E&zq(Px+XBu|W{x9T0+oQtqxZ^h%suxi+3|L`i&<&LXGf@M7 z1Qq&?*a2TcW@eqkF8C{U!j6A6Yk!xc2fNe1wU-OMcoBzVy{F8PIvzVyo{l~7Nesi+ zFcL4KBGzD~8E8jTc{u91Bvb?nP`R}nwZvN;KSPhQz2Pb|fOgoI@<^$nc1D8GV=z!i+fT5C+Cx}gSiFKPm1sDZq>hWM+Ylg@)bp~|g_ z&4pD012w~RRK(V!2DSqgv5%bkfD)54VW@V;p&~mOd*U)wgkDEQ!1E;+ z&AGUY0r)S}$eOM<<#235xew~O(Wqpdfi1BB6_HZxj$5!Reu|oD?G0u^A*h@hjLA3> zgSG$nI5*zG2HZG_9q}CYLDxnT;(j=Y@(fgxZANX&9jJjFLk;Xx)UNrrQ;sY(-=@do z0P1(5BJn*o(*AF=$&4%t>v1C<73%(|hUQ=_7Go&BgIc2RP#xFbY<@cy>R5pa`M76{ z9#mvs#Oe4hhG2LZ6ZLR0hzm718+Bkjh4izoE8IK{i%ZpAj@uWj=T6`IjC)KS@FyZHvx8~akuMb+;^t^GMv z1K*(5{00VL$PQz7)PTpK2AGDe(c|1NMMbV+2k}=!A5o!fzUcTbeA&glotE_hp4>&p zHJSNyG)TE@FJ}QBe1SpnUi5yxyx;}Y_I&b1lS^w*k=%@=g>?dT4$OVYe4M}H;UbX= zzjD4v;{6zgFJd!1gN^WejKLe&4%;6vpK`-dk(q;jxCS+V4XF2bIv&A#l#io!*;!O% zJl}Ak2;4%wP`|<)IIYp9+{G!6MZI{h<1Fk>ITv$q7y4t!LG$t46?H%@MH}~_?w>;K zqVKSU_J55-=HzSX7>U|`y-_nx#hzG<*YPCw#@7#Crr4`Dc7M73Mzm}$51G2$OgMGzHQn{KGkPRIN35PC51EfeCk zsGQh^YUne(2fxDmvHRQRpJLXaCUOP!T#I*%A*jfPVPl-~4y`K!sZ?kQ9>Q_B64mep zyaVIkH9!A9j1N%$3J2rB_soaNVpREc9D+68H%l=b6`{v*Bp!0g)(7-Sxx0sp4qR-+ zdiW-G!xK0VZ=+^1@VHsKxmcU>CRBslFaoPlOXz>XM5-O?xp+*(J~#^3U`zbUx$n8j z#WWWmm#8F}`k{GoH4dY^-YI{DN~TMwi2a6BvFS&qJ`MZP&LXG$>M1k8GpNXhe#{q7 z?1tHR7TaodN1Qfie=4ejCvX9lqGlHGi8(O(;!w(os7P(XyKyJl_!~Zip=ZoLM3$f; z;&;|$yFaSj!Ld6=E4zkpk-&{?RLFLqKkh}n@CJ^+k1!kqKQ;TfFY5WRs2NRi%5OOy zM}_<}MiH6TpP6q`qdqt7Ct?fww=%fshf7cmzJ>w#4mQLuQAzj%4#&82e2>HVsEAnS z&GsCIdTtlS;5AeP+kWAER-jFJ4sO9h^nL%2{?g2J2tLe>3D^oxpdxYE@mCC_+~k6> z1L}T%RD|xr)>wjC^9oc1KXCjUHNo$(F;-t7{;K$m3ax3)ugnXLP~{NR{RmXnMqvmJ zbLt;J4RjVZ#U-c?i*Pn>aqidu+I&Vt;56!EopRyV#J@QeYn_VSs16QbXFP>!@K;=k z_5N;_U_EL;Ut@o~g$r5Zgm29A`!1S+zlw_3TTb~4$BRz=4<0V^dBFPCB+)#KrFa>& z9fQ6zzdoCYTGPKc<-?dl`A00nyDyn98oxNU|K6M%cVRU5AH`1iJZd6mF&#bb%OnIB zr!f=zUorc74<=Cd`@uw_FRrDWiW&HC?1pnI&2yVEit-s8hc2&~$aw5Zc@b(t`!OCX zk;wAUXfs2OtgY&>m$J>}eecfLy>oCs4aoF{y3FV`x znH@sCe-i_+<}D`zsE+$%3!I95Fav{d7kV_4H@MIY-$QkH4m;x=|1cfp;2O$%P%|6+ zPqV$A!ZDO@;e$BzUnUnS@P5i(48}3Pn)lqOTzJVTU;LH$tD@^~W`Ev~k(B4)6Ig_C z82oSZt#}MJqnzou2-{I!javHys5QQUYPa9-X2$8L@=ol9pJ6gKy-oZVaglf1d|Lg2 z3ef<|<;&)UsL<`eP<#cI6X&oV+Af#x1ni88-~d$pcs5QNW8el+u zm+x1yeNeeD4YdRtFa%GdlKm=9$6qjB`+s5sm+xd+ijBDOI(EYkQ3G%_G@)vav6TCv zB9?(kxDt=!PdE%;ZDcyC(b(ln)_S;r`ViFiU4zPrix^M;R;MN|-%r0YP&0W1^}rTX zHeW$4O>9$_@2BBZR2FZ=A@~J`VVhI5N#;R?bOZLqEvODIU>WvoVRGYh)brJ-9H`5W(0Z?5fXn0i z_B)gcW#=5!0kaD0;|0_US1<)z^M4Vf;$qYiT)`-;-_m8-*b|lQQ}F?O7S&O$Ad@o< zP!nv6%AM#SkD2KVDkf8r9E1HR&p>ss z0sG?zI0@^9m?fKz?I}Ow;X)_eG1Pwi1%t3{Ym-d9P!V_()$og`bKjBq?ApbwSuSduY)2g+<*5C88WoXh9EG<~**`eSB-MSW=bv+YANAf99EmmgA4GJ( zjYXX=4@R^96~f1<(0*TzT8d)S06s+J!k4JEz2=nL$C#P)M4by6Xya*AuKbK@w|!R= zna-$ONKb#~V}xQ1Llx`&~t4d7W7EV0+ZA=#J{(PE-gVLv>Vy18{@m zIaFkV;!H#nP|wZ6$1xK%!RsC_6jH03u|8@kTA)bsxFX2zkY5D!4@ zjzsK(9@NsljBdP!cjDykCds#>BH+2qg&O<^YJ@cs%o^2mj6o&aBvf)eg4)-cQ3uN@ zd=oD_KG(xUBBQ5q57yzn7xVFFR1T!|a_I*XkM$H6+CE27Grxj!F{-y&yAo9WX&i@v zeS9xkDX5vRMonNZD#;F^25R*+=R_E4z>`qB=Lyt@-T{oz=YJI!YM^;Pm+zNDtx+Mo z%PFrwEx{Y80RQ__Q4^VhHeeu+9auAnC1KfpwI3Mz8<;dJf)d@l6j zY1D&1qRxZ(f##rDfU%U1p?1j)wDC47a`qsTv|~|8>qgyQj7sXQsN6V=`i}S&YMcIs zfy(xf!RE#8sDVrvT>f0t-u6xA+i98hJaot=}F?9R>Q)%mmCIc_^UD>pZ7X1d#s^vxhC-AvF9OUlp73gfNxbUW9b z$D2$kIXgc(IV(RiuT#<5%s)T|uay}-=KPR^mr=p1({-Df7deN#xK(UkJhg?HDAP0NeUPD`G<(9Xz8aYxzn zlX5ccq?uX7fO*&%X$&`W7QuC1&n+)qx!rZQoj2Q^L0d@~1Ue#z9%;~y{Nr)o-59Ol zz)n_X)_;9Eij^lMX?e6Tb0LkC4|saLYmCOu>vnQd@@($7Gv}q{WMyVBGdqbcQnHfs za@=lb+5QuU@%P+4;hwvPjhfgs#(5;SQ_;t(6Yor78BFL+Lglmc$~CRK9jUsQ?1i0_ zCh1wpNgB+58qH;Tc2cfAY5YAChYqLlPUVqB*K5RN@#_CC#=gW2THCL7v@c#nN@rR5_4nf5Hxg>Q+e%q`zl7F(lHd~|HD=(wJC zT=zZ+y~;0bo#d+7EhetK@3wEFn!i*~RaU^(t6I0pt~$7;a{r>D)*nv}uP#2|Ej(gZ z6>O_2E3VwXx@yw_yK3Fis^t~l!e!pVZN5oA`0+1o$5E&%EVaEyR(Oj_?dsw(yL$N% zUb3rKtf<;_v}#j{?R{>ycgv<2wkplrRXZ1P+q+~g&lTM2 zkKxAHl`kIf7A*6YE;b#-l&|@DQcVvJdY5mnE-tkzUwXA_!+!Q;<^EEQxq3|jT~-ww zu3Em$yZxwLwPa7#hTZCS-5%Rp{I4xoo%l151nw2ueoIS&71J8vMpZgnk#x5@n?6Wd+_%uX3LBVGA*0!*yT6#qN~ir&~4T*tXn zRIxAO(D+za7r%aHoBg?CNRhIF>JqlfpGmiqLh*7IC`v~`RY^tF6D8iFZR~(`ISH<^ zq0v*S)-PgP?5cdF#MxmcSEHPTRpiauR diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index c2c594ef122..6c4d7081600 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://app.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -39,104 +39,104 @@ msgstr "원본 디렉토리와 대상 디렉토리는 같을 수 없습니다" msgid "Running Sphinx v%s" msgstr "Sphinx 버전 %s 실행 중" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현재 버전으로 빌드할 수 없습니다." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "출력 디렉토리 만드는 중" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "확장 기능 %s 설정 중:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python 객체가 아닙니다. 호출 가능한 함수가 되도록 정의를 수정하십시오.\n이것은 conf.py가 Sphinx 확장 기능으로 동작하는 데 필요합니다." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "완료" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "잘못된 구성 값을 찾았습니다: 'language = None'. 유효한 언어 코드로 구성을 업데이트하십시오. 대신 'en'(영어)을 사용합니다." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "Dictionary 구성 설정 %r을(를) 재정의할 수 없으며, 무시합니다 (개별 요소를 설정하기 위해 %r 사용)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "숫자 %r이(가) 설정값 %r에 대해 유효하지 않으며, 무시합니다" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "지원되지 않는 유형의 구성 설정 %r을(를) 재정의 할 수 없으며, 무시합니다" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "재정의 중 알 수 없는 설정값 %r, 무시합니다" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "해당 설정값이 없습니다: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "구성 파일에 구문 오류가 있습니다: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,291 +233,328 @@ msgid "" "%s" msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "설정값 'source_suffix'는 문자열, 문자열의 목록 또는 dictionary를 예상합니다. 그러나 `%r'이(가) 지정되었습니다." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "제 %s 절" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "그림 %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "표 %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "예시 %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "설정값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 지정되었습니다." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, {permitted} 유형을 기대했습니다." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, 기본값은 `{default.__name__}'입니다." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r(이)가 없으므로, 무시합니다." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "2.0 버전부터 Sphinx는 기본적으로 \"index\"를 root_doc으로 사용합니다. conf.py에 \"root_doc = 'contents'\"를 추가하십시오." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "이벤트 %r이(가) 이미 존재합니다" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "알 수 없는 이벤트 이름: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "처리기 %r (이벤트 %r에 대한) 에서 예외를 발생했습니다" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "%s 확장 기능은 needs_extensions 설정에 따라 필요하지만, 로드되지 않았습니다." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "이 프로젝트에는 최소한 %s 버전의 %s 확장 기능이 필요하므로 로드 된 버전(%s)으로 빌드 할 수 없습니다." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments 구문 분석기 이름 %r을(를) 확인할 수 없습니다" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "문서 \"%s\"에 대해 여러 파일을 발견했습니다: %r\n빌드에 %r을(를) 사용합니다." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "빌더 클래스 %s에 \"name\" 속성이 없습니다" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "%r 빌더가 이미 존재합니다 (%s 모듈에 있음)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "빌더 이름 %s이(가) 등록되지 않았거나 진입점을 통해서만 사용할 수 있습니다" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "빌더 이름 %s이(가) 등록되지 않았습니다" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "%s 영역이 이미 등록되었습니다" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "%s 영역이 아직 등록되지 않았습니다" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r 지시문이 %s 영역에 이미 등록되었습니다" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r 역할이 %s 영역에 이미 등록되었습니다" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r 색인이 %s 영역에 이미 등록되었습니다" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type이 이미 등록되었습니다" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type이 이미 등록되었습니다" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r이(가) 이미 등록되었습니다" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "%r에 대한 source_parser가 이미 등록되었습니다" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "%s에 대한 소스 해석기가 등록되지 않았습니다" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "%r에 대한 변환기가 이미 존재합니다" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node()에 대한 kwargs는 반드시 (visit, depart)의 함수 튜플이어야 합니다: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r이(가) 이미 등록되었습니다" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "수식 렌더러 %s이(가) 이미 등록되었습니다" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "%r 확장 기능은 Sphinx에 버전 %s 이후로 이미 병합되었습니다. 이 확장 기능은 무시됩니다." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "원래 예외:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "확장 기능 %s을(를) 가져올 수 없습니다" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "확장 기능 %r에 setup() 함수가 없습니다. Sphinx 확장 모듈이 맞습니까?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "이 프로젝트에서 사용하는 %s 확장 기능에는 최소한 Sphinx v%s이(가) 필요합니다. 따라서 이 버전으로 빌드 할 수 없습니다." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "확장 기능 %r이(가) setup() 함수에서 지원되지 않는 개체를 반환했습니다. None 또는 메타데이터 dictionary를 반환해야 합니다" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 향상 제안; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "잘못된 PEP 번호 %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "잘못된 RFC 번호 %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "테마 %r에 \"theme\" 설정이 없습니다" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "테마 %r에 \"inherit\" 설정이 없습니다" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "이름이 %r인 테마가 없으며, %r에서 상속합니다" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "검색된 테마 구성에서 %s.%s 설정이 존재하지 않습니다" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "지원하지 않는 테마 옵션 %r을(를) 설정했습니다" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "테마 경로의 %r 파일이 유효한 ZIP 파일이 아니거나 테마를 포함하지 않습니다" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "이름이 %r인 테마를 찾을 수 없습니다 (theme.conf 파일 누락?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -528,8 +570,8 @@ msgstr "%s 빌더에 적합한 이미지를 찾을 수 없음: %s" msgid "building [mo]: " msgstr "빌드 중 [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "출력을 쓰는 중… " @@ -578,7 +620,7 @@ msgstr "명령줄에 지정된 %d 개의 원본 파일" msgid "targets for %d source files that are out of date" msgstr "오래된 %d 개의 원본 파일 대상" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "빌드 중 [%s]: " @@ -587,50 +629,50 @@ msgstr "빌드 중 [%s]: " msgid "looking for now-outdated files... " msgstr "오래된 파일을 찾는 중… " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d 개 찾음" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "찾은 것이 없음" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "pickle로 환경을 저장하는 중" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "일관성 확인 중" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "오래된 대상이 없습니다." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "환경을 갱신하는 중: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 개 추가됨, %s 개 변경됨, %s 개 제거됨" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "원본을 읽는 중… " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "기록할 문서 이름: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "문서 준비 중" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "중복된 목차 항목 발견: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "이미지를 복사하는 중… " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "이미지 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "이미지 파일 %r을(를) 기록할 수 없습니다: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow를 찾을 수 없습니다 - 이미지 파일을 복사합니다" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "mimetype 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "META-INF/container.xml 파일 쓰는 중…" @@ -676,470 +718,470 @@ msgstr "META-INF/container.xml 파일 쓰는 중…" msgid "writing content.opf file..." msgstr "content.opf 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s은(는) 알 수 없는 MIME 유형이며, 무시합니다" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "toc.ncx 파일 쓰는 중…" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "%s 파일을 기록하는 중…" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "개요 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "버전 %s에는 변경 사항이 없습니다." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "요약 파일 작성 중…" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "내장" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "모듈 수준" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "원본 파일을 복사하는 중…" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "변경 로그 생성을 위해 %r을(를) 읽을 수 없습니다" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "더미 빌더는 파일을 생성하지 않습니다." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePub 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "nav.xhtml 파일 쓰는 중…" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "설정값 \"epub_language\"(또는 \"language\")는 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "설정값 \"epub_uid\"는 EPUB3의 경우 XML 이름이어야 합니다" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "설정값 \"epub_title\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "설정값 \"epub_author\"는 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "설정값 \"epub_contributor\"는 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "설정값 \"epub_description\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "설정값 \"epub_publisher\"는 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "설정값 \"epub_copyright\"(또는 \"copyright\")는 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "설정값 \"epub_identifier\"는 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "메시지 카탈로그는 %(outdir)s에 있습니다." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "%d 개의 템플릿 파일 대상" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "템플릿을 읽는 중… " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "메시지 카탈로그 작성 중… " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "끊어진 링크: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects에서 정규식을 컴파일하지 못했습니다: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "매뉴얼 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "\"man_pages\" 설정값이 없으므로, 매뉴얼 페이지를 작성하지 않습니다" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "작성 중" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "단일 문서 조합 중" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "추가 파일 작성 중" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfo 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nmakeinfo를 통해 작업하려면 해당 디렉토리에서 'make'를 실행하십시오\n(자동으로 수행하려면 여기에서 'make info'를 사용하십시오)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "\"texinfo_documents\" 설정값이 없으므로, 문서를 작성하지 않습니다" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "%s 처리 중" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "참조 처리 중…" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (문서 " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "Texinfo 지원 파일을 복사하는 중" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "Makefile 쓰기 오류: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "텍스트 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "%s 파일 쓰기 오류: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XML 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "의사 XML 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "빌드 정보 파일이 손상되었습니다: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML 페이지는 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "색인" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "다음" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "이전" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "색인 생성 중" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "추가 페이지 작성 중" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "다운로드 가능한 파일을 복사하는 중… " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "정적 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "정적 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "추가 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "빌드 정보 파일 쓰기 실패: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "객체 인벤토리 덤프 중" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "%s에서 검색 인덱스 덤프 중" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "잘못된 js_file: %r, 무시합니다" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "로고 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s 문서" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "\"latex_documents\" 설정값이 없으므로, 문서를 작성하지 않습니다" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조합니다" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "색인" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "릴리스" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "%r 언어에 대해 알려진 Babel 옵션이 없습니다" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "TeX 지원 파일을 복사하는 중" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "TeX 지원 파일을 복사하는 중…" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "알 수 없는 설정 키: latex_elements[%r], 무시합니다." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "알 수 없는 테마 옵션: latex_theme_options[%r], 무시합니다." @@ -1154,15 +1196,15 @@ msgstr "%r에 \"theme\" 설정이 없습니다" msgid "%r doesn't have \"%s\" setting" msgstr "%r에 \"%s\" 설정이 없습니다" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "버그 보고서는 의 트 msgid "job number should be a positive number" msgstr "작업 숫자는 양수여야 합니다" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "자세한 내용은 를 참조하십시오." @@ -1254,257 +1296,264 @@ msgid "path to output directory" msgstr "출력 디렉토리 경로" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "다시 빌드 할 특정 파일의 목록. -a가 지정되면 무시합니다" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "일반 옵션" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "사용할 빌더 (기본값: html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "모든 파일 기록 (기본값: 새 파일과 변경된 파일만 기록)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "저장된 환경을 사용하지 않고, 항상 모든 파일 읽기" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "캐시된 환경 및 doctree 파일 경로 (기본값: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "가능한 경우 N 개의 프로세스를 사용하여 병렬로 빌드 (특수 값 \"auto\"는 CPU 개수로 N 값을 설정합니다)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "구성 파일(conf.py)이 있는 경로 (기본값: SOURCEDIR과 동일)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "설정 파일을 전혀 사용하지 않고, -D 옵션들만 사용" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "구성 파일의 설정 무시" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "HTML 템플릿에 값 전달" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "태그를 정의: 태그가 있는 \"only\" 블록을 포함" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "까다로움 모드, 모든 누락된 참조에 대해 경고 발생" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "콘솔 출력 옵션" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "상세도 높임 (반복 가능)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "stdout에 출력하지 않고, stderr에 경고만 표시" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "경고를 포함하여 아무 출력도 하지 않음" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "컬러 출력 허용 (기본값: 자동 감지)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "컬러 출력을 허용하지 않음 (기본값: 자동 감지)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "주어진 파일에 경고(및 오류)를 기록" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "경고를 오류로 바꿈" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "-W와 함께 지정하여, 경고가 발생했을 때 계속 진행" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "예외 발생 시 전체 추적 표시" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "예외 발생 시 Pdb 실행" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "-a 옵션과 파일 이름을 함께 사용할 수 없습니다" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "경고 기록 파일 %r을(를) 열 수 없습니다: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D 옵션 인수는 name=value 형식이어야 합니다" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A 옵션 인수는 name=value 형식이어야 합니다" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "모듈에서 자동으로 docstring 삽입" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "doctest 블록의 코드 조각을 자동으로 테스트" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "다른 프로젝트의 Sphinx 문서 간 링크" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "빌드 시 표시하거나 숨길 수 있는 \"할 일\" 항목 작성" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "문서의 커버리지 확인" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "PNG나 SVG 이미지로 렌더링 된 수식 포함" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "MathJax로 브라우저에서 렌더링 하는 수식 포함" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "설정값을 기반으로 콘텐츠를 조건부 포함" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "문서화 된 Python 객체의 소스 코드에 대한 링크 포함" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "GitHub 페이지에 문서를 게시하기 위해 .nojekyll 파일 생성" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "유효한 경로 이름을 입력하십시오." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "텍스트를 입력하십시오." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "%s 중 하나를 입력하십시오." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "'y' 또는 'n'을 입력하십시오." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "파일 접미사를 입력하십시오 (예: '.rst' 또는 '.txt')." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Sphinx %s 빠른 시작 유틸리티에 오신 것을 환영합니다." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "다음 설정에 대한 값을 입력하십시오 (대괄호로 묶여 있는 기본값이 존재하고\n이 값을 사용하려면 바로 Enter를 누릅니다)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "선택한 루트 경로: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "문서의 루트 경로를 입력하십시오." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "문서의 루트 경로" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "오류: 선택한 루트 경로에서 기존 conf.py 파일이 발견되었습니다." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart는 기존 Sphinx 프로젝트를 덮어 쓰지 않습니다." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "새 루트 경로를 입력하십시오 (또는 Enter를 눌러 종료)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Sphinx 출력을 위한 빌드 디렉토리를 배치하는 두 가지 옵션이 있습니다.\n루트 경로 내에서 \"_build\" 디렉토리를 사용하거나, 루트 경로 내에서\n\"source\"와 \"build\" 디렉토리로 분리합니다." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "원본과 빌드 디렉토리 분리 (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "루트 디렉토리 내에 두 개의 추가 디렉토리가 생성됩니다. 사용자 정의 HTML 템플릿의\n경우 \"_templates\", 사용자 정의 스타일시트 및 기타 정적 파일의 경우 \"_static\"\n입니다. 다른 접두사(\".\" 과 같은)를 입력하여 밑줄 문자를 변경할 수 있습니다." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "템플릿 및 정적 디렉토리의 이름 접두사" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "프로젝트 이름은 빌드 된 문서의 여러 위치에 표시됩니다." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "프로젝트 이름" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "작성자 이름" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx는 소프트웨어에 대한 \"버전\"과 \"릴리스\"라는 개념을 가지고 있습니다.\n각 버전에는 여러 릴리스가 있을 수 있습니다. 예를 들어 Python의 경우 버전은\n2.5나 3.0과 같은 반면 릴리스는 2.5.1 또는 3.0a1과 같습니다.\n이러한 이중 구조가 필요하지 않으면 둘 다 동일한 값으로 설정하십시오." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "프로젝트 버전" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "프로젝트 릴리스" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "문서를 영어 이외의 언어로 작성하려는 경우, 여기에서 해당 언어 코드로 언어를\n선택할 수 있습니다. 그러면 Sphinx가 생성한 텍스트를 해당 언어로 번역합니다.\n\n지원되는 코드 목록은\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language\n를 참조하십시오." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "프로젝트 언어" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "원본 파일의 파일 이름 접미사. 일반적으로 \".txt\" 또는 \".rst\" 입니다. 이 접미사가\n있는 파일만 문서로 간주됩니다." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "원본 파일 접미사" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "한 문서는 \"컨텐츠 트리\"의 최상위 노드, 즉 문서 계층 구조의 루트로 간주된다는\n점에서 특별합니다. 일반적으로 이 값은 \"index\" 이지만, \"index\" 문서가\n사용자 정의 템플릿일 경우 이를 다른 파일 이름으로 설정할 수도 있습니다." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "마스터 문서의 이름 (접미사 없이)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "오류: 선택한 루트 경로에 마스터 파일 %s이(가) 이미 있습니다." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart는 기존 파일을 덮어 쓰지 않습니다." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "새 파일 이름을 입력하거나 기존 파일의 이름을 바꾸고, Enter를 누르십시오" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "다음 Sphinx 확장 기능 중 사용 설정해야 하는 항목을 지정하십시오:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "참고: imgmath와 mathjax는 동시에 활성화 할 수 없습니다. imgmath가 선택 취소되었습니다." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Makefile 및 Windows 명령 파일을 생성할 수 있으므로, sphinx-build를 직접 호출하는\n대신 (예를 들어) `make html'을 실행하기만 하면 됩니다." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Makefile을 만드시겠습니까? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Windows 명령 파일을 만드시겠습니까? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "%s 파일을 만드는 중입니다." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "%s 파일이 이미 존재하여, 건너뜁니다." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "완료됨: 초기 디렉토리 구조가 생성되었습니다." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "이제 마스터 파일 %s을(를) 채우고 다른 원본 문서 파일을 만들어야 합니다. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Makefile을 사용하여 다음과 같이 문서를 빌드하십시오:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "sphinx-build 명령을 사용하여 다음과 같이 문서를 빌드하십시오:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "여기서 \"builder\"는 지원되는 빌더 중 하나(예: html, latex, linkcheck)입니다." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nSphinx 프로젝트에 필요한 파일을 생성합니다.\n\nsphinx-quickstart는 대화형 도구로서, 프로젝트에 대한 몇 가지 질문을 한 다음\n완전한 문서 디렉토리와 (sphinx-build와 함께 사용할 수 있는) 견본 Makefile을 생성합니다.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "조용한 모드" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "프로젝트 루트 디렉토리" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "구조 옵션" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "지정된 경우, 원본과 빌드 디렉토리를 구분합니다" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "지정된 경우, 원본 디렉토리 아래에 빌드 디렉토리를 만듭니다" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "_templates 등에서 마침표의 대체 문자" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "프로젝트 기본 옵션" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "프로젝트 이름" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "작성자 이름" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "프로젝트의 버전" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "프로젝트의 릴리스" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "문서 언어" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "원본 파일의 접미사" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "마스터 문서 이름" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "EPUB 사용" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "확장 기능 옵션" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "%s 확장 기능 사용" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "임의의 확장 기능 사용" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefile과 배치 파일 생성" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "makefile 생성" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "makefile을 생성하지 않음" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "배치 파일 생성" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "배치 파일을 생성하지 않음" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat에서 make 모드 사용" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat에서 make 모드 사용하지 않음" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "프로젝트 템플릿" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "템플릿 파일에 대한 템플릿 디렉토리" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "템플릿 변수 정의" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\"이 지정되었지만, \"project\" 또는 \"author\"가 정의되지 않았습니다." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "오류: 지정된 경로가 디렉토리가 아니거나, Sphinx 파일이 이미 있습니다." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart는 빈 디렉토리에만 생성됩니다. 새 루트 경로를 지정하십시오." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "잘못된 템플릿 변수: %s" @@ -1826,47 +1875,47 @@ msgstr "분리된 \"lines\" 집합과 함께 \"lineno-match\"를 사용할 수 msgid "Line spec %r: no lines pulled from include file %r" msgstr "행 지정 %r: 포함 파일 %r에서 가져온 줄이 없습니다" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree glob 패턴 %r 이(가) 어느 문서와도 일치하지 않습니다" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree에 제외된 문서 %r에 대한 참조가 있음" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree에 존재하지 않는 문서 %r에 대한 참조가 있음" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "toctree에서 중복 항목이 발견됨: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "구역 작성자: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "모듈 작성자: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "코드 작성자: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "작성자: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr ".. acks 내용이 목록이 아닙니다" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr ".. hlist 내용이 목록이 아닙니다" @@ -1881,82 +1930,10 @@ msgstr "csv-table 지시문의 \":file:\" 옵션은 이제 절대 경로를 소 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "매개변수" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "반환값" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "반환" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "반환 형식" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "멤버 변수" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "변수" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "함수" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "매크로" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "구조체" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "공용체" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "열거형" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "열거자" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "자료형" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "함수 매개변수" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "버전 %s에 추가" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "버전 %s에서 변경" msgid "Deprecated since version %s" msgstr "버전 %s부터 폐지됨" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "중복 인용 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "인용 [%s]이(가) 참조되지 않았습니다." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "중복 C++ 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. cpp:%s:: %s' 입니다." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "템플릿 매개변수" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "예외" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "클래스" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "콘셉트" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "템플릿 매개변수" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (클래스)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "인수" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "예외" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "반환" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "반환 형식" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "함수" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "클래스" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "속성" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "모듈" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (지시문)" + +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (지시문 옵션)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (역할)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "지시문" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "지시문 옵션" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "역할" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "중복된 %s %s 설명, 다른 인스턴스는 %s에 있음" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "매개변수" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "반환값" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "멤버 변수" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "변수" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "예외 발생" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "매크로" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "구조체" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "공용체" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "열거형" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "열거자" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "자료형" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "함수 매개변수" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "템플릿 매개변수" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "중복 C++ 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. cpp:%s:: %s' 입니다." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "콘셉트" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "템플릿 매개변수" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "예외" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "특성" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (폐지됨)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (지시문)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (지시문 옵션)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (역할)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "지시문" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "지시문 옵션" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "역할" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "변수" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "중복된 %s %s 설명, 다른 인스턴스는 %s에 있음" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "예외 발생" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "환경 변수; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s 명령줄 옵션" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "명령줄 옵션" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "용어 앞에는 빈 줄이 와야 합니다" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "용어 정의는 빈 줄로 구분하면 안됩니다." -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "용어 정의 형식이 잘못된 것 같습니다. 들여쓰기를 확인하십시오" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "용어 항목" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "문서" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "중복 레이블 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig가 비활성화되었습니다. :numref:는 무시됩니다." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "상호 참조를 생성하지 못했습니다. 어떤 번호도 할당되지 않았습니다: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "링크에 캡션이 없습니다: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "잘못된 numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "잘못된 numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "정의되지 않은 레이블: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %r" @@ -2324,35 +2378,35 @@ msgstr "설정이 변경됨" msgid "extensions changed" msgstr "확장 기능이 변경됨" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "빌드 환경 버전이 최신이 아님" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "원본 디렉토리가 변경됨" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s에서 문서를 탐색하지 못했습니다: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "%r 영역이 등록되지 않았습니다" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "문서가 어느 toctree에도 포함되어 있지 않음" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다." @@ -2376,39 +2430,39 @@ msgstr "알 수 없는 색인 항목 유형 %r" msgid "Symbols" msgstr "기호" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "순환 toctree 참조가 감지되었으며, 무시합니다: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree에 제목이 없는 문서 %r에 대한 참조가 있습니다. 링크가 생성되지 않습니다" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "이미지 파일을 읽을 수 없음: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "이미지 파일 %s을(를) 읽을 수 없음: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "다운로드 가능 파일을 읽을 수 없음: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s에 이미 구역 번호가 할당되었습니다 (중첩된 번호 붙인 toctree?)" @@ -2418,7 +2472,7 @@ msgstr "%s에 이미 구역 번호가 할당되었습니다 (중첩된 번호 msgid "Would create file %s." msgstr "%s 파일을 작성합니다." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n에서 Python 모듈 및 패키지를 재귀적으로 찾고\nautomodule 지시문이 있는 패키지 당 하나의 reST 파일을 에 만듭니다.\n\n은 생성에서 제외할 파일 또는 디렉토리 패턴일 수 있습니다.\n\n참고: 기본적으로이 스크립트는 이미 생성된 파일을 덮어 쓰지 않습니다." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "문서에 대한 모듈 경로" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "생성에서 제외할 fnmatch 형식의 파일 또는 디렉토리 패턴" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "모든 출력을 저장할 디렉토리" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "목차에 표시할 하위 모듈의 최대 깊이 (기본값: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "기존 파일 덮어쓰기" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "심볼릭 링크를 따라갑니다. collective.recipe.omelette과 결합하면 강력합니다." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "파일을 생성하지 않고 스크립트 실행" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "각 모듈에 대한 문서를 개별 페이지에 배치" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "\"_private\" 모듈 포함" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "목차의 파일 이름 (기본값: modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "목차 파일을 만들지 않음" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "모듈/패키지에 대한 제목을 만들지 않음 (예: docstring에 이미 포함된 경우)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "서브 모듈 문서 앞에 모듈 문서를 넣음" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "PEP-0420 암시적 네임 스페이스 사양에 따라 모듈 경로 해석" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "파일 확장자 (기본값: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart로 전체 프로젝트 생성" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "--full이 주어졌을 때, sys.path에 module_path 추가" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "프로젝트 이름 (기본값: 루트 모듈 이름)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "--full이 주어졌을 때, 프로젝트 작성자" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "--full이 주어졌을 때, 프로젝트 버전" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "--full이 주어졌을 때, 프로젝트의 릴리스이며 기본값은 --doc-version 값과 같음" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "확장 기능 옵션" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s은(는) 디렉토리가 아닙니다." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "잘못된 정규식 %r (%s에서)" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "소스에서 커버리지 테스트가 완료되었으며, %(outdir)s/python.txt 에서 결과를 확인하십시오." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "coverage_c_regexes의 잘못된 정규표현식 %r" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "문서화되지 않은 C API: %s [%s], 파일 %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "%s 모듈을 가져올 수 없습니다: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "문서화되지 않은 Python 함수: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "문서화되지 않은 Python 클래스: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "문서화되지 않은 Python 메소드: %s :: %s :: %s" @@ -2596,24 +2650,24 @@ msgstr "'%s'은(는) 유효한 pyversion 옵션이 아닙니다" msgid "invalid TestCode type" msgstr "잘못된 TestCode 유형" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "소스에서 doctest 테스트가 완료되었으며, %(outdir)s/output.txt 에서 결과를 확인하십시오." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "%s 블록(%s:%s)에 코드/출력 없음" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "잘못된 doctest 코드 무시: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 가장 느린 읽기 시간 =======================" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "하드코딩 된 링크 %r은(는) extlink로 대체할 수 있습니다 (대신 %r을(를) 사용해 보십시오)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 지시문에 내용과 파일 이름 인수를 모두 지정할 수 없습니다" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "외부 Graphviz 파일 %r을(를) 찾을 수 없거나 읽지 못했습니다" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "내용이 없는 \"graphviz\" 지시문을 무시합니다." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot 명령 %r을(를) 실행할 수 없습니다 (graphviz 출력에 필요). graphviz_dot 설정을 확인하십시오." -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "dot이 오류와 함께 종료되었습니다:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "dot이 출력 파일을 생성하지 않았습니다:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format은 'png', 'svg' 중 하나여야 하지만, 값이 %r 입니다" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "dot 코드 %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[그래프: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[그래프]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "이미지 변환 명령 %r을(를) 실행할 수 없습니다. 'sphinx.ext.imgconverter'에는 기본적으로 ImageMagick이 필요합니다. 해당 프로그램이 설치되어 있는지 확인하거나, 'image_converter' 옵션을 사용자 정의 변환 명령으로 설정하십시오.\n\n역추적: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "convert가 오류와 함께 종료되었습니다:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "변환 명령 %r을(를) 실행할 수 없습니다. image_converter 설정을 확인하십시오." -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX 명령 %r을(를) 실행할 수 없습니다 (수식 표시에 필요). imgmath_latex 설정을 확인하십시오" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s 명령 %r을(를) 실행할 수 없습니다 (수식 표시에 필요). imgmath_%s 설정을 확인하십시오" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "표시 LaTeX %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "인라인 LaTeX %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx 인벤토리가 이동함: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s 에서 intersphinx 인벤토리 로드 중…" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "일부 인벤토리에서 몇 가지 문제가 발생했지만, 동작하는 대체 인벤토리로 처리했습니다:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "다음 문제가 있어 어느 인벤토리도 도달하지 못했습니다:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s에서)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(%s에서)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "외부 상호 참조에 대한 인벤토리를 찾을 수 없음: %s" +msgid "inventory for external cross-reference not found: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "외부 상호 참조에 대한 역할을 찾을 수 없음: %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "외부 %s:%s 참조 대상을 찾을 수 없음: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 식별자 %r이(가) 문자열이 아닙니다. 무시합니다" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "intersphinx_mapping[%s]을(를) 읽지 못했으며, 무시합니다: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[소스]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "할 일" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "TODO 항목 발견: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<<원래 항목>>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<원래 항목>>은 %s 파일, %d 행에 있습니다.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "원래 항목" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "모듈 코드 강조 중… " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[문서]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "모듈 코드" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s의 소스 코드

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "개요: 모듈 코드" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

코드를 확인할 수 있는 모든 모듈

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "member-order 옵션에 대해 잘못된 값: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "class-doc-from 옵션에 대해 잘못된 값: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "auto%s (%r)에 대한 잘못된 서명" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: 문서화 할 %s.%s (%r) 을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "%r의 자동 문서화를 위해 가져올 모듈을 알 수 없습니다 (문서에 \"module\" 또는 \"currentmodule\" 지시문을 배치하거나, 명시적으로 모듈 이름을 지정해 보십시오)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "모의 객체가 감지되었습니다: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "%s에 대한 서명을 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 이름의 \"::\"은 의미가 없음" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule %s에 대해 서명 인수 또는 반환 값 주석이 지정됨" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__은 %r이(가) 아닌 문자열의 목록이어야 합니다 (모듈 %s) -- __all__을 무시합니다" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "%s 속성이 %s 객체에 없음" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r에 대한 기본 인수 값을 해석하지 못했습니다: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "%r에 대한 서명을 업데이트하지 못했습니다. 매개변수를 찾을 수 없습니다: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "%r에 대한 type_comment를 해석하지 못했습니다: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary가 제외된 문서 %r을(를) 참조합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 스텁 파일 %r을(를) 찾을 수 없습니다. autosummary_generate 설정을 확인하십시오." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "캡션이 있는 자동 요약에는 :toctree: 옵션이 필요합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,26 +3053,26 @@ msgid "" "%s" msgstr "autosummary: %s을(를) import 하지 못했습니다.\n가능한 힌트:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "이름 %s을(를) 해석하지 못함" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary는 내부적으로 .rst 파일을 생성합니다. 하지만 source_suffix에 .rst가 포함되어 있지 않습니다. 건너뜁니다." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "모듈 __all__ 속성의 구성원만 정확히 문서화합니다. (기본값: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "키워드 매개변수" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "예제" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "예제" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "참고" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "기타 매개변수" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "수신" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "참조" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "경고" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "생성" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "잘못된 값 세트 (닫는 중괄호 누락): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "잘못된 값 세트 (여는 중괄호 누락): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "잘못된 문자열 리터럴 (닫는 따옴표 누락): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "잘못된 문자열 리터럴 (여는 따옴표 누락): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "주의" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "조심" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "위험" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "오류" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "힌트" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "중요" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "참고" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "더 보기" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "팁" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "경고" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "목차" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "검색" @@ -3343,34 +3402,22 @@ msgstr "다음 항목" msgid "next chapter" msgstr "다음 장" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "검색 기능을 사용하려면 JavaScript를 활성화하십시오." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "여러 단어를 검색하면 모든 단어가 포함된 일치 항목만 표시됩니다." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "검색" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "검색 결과" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "검색어와 일치하는 문서가 없습니다. 모든 단어의 철자가 올바른지, 충분한 카테고리를 선택했는지 확인하십시오." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "빠른 검색" @@ -3407,20 +3454,30 @@ msgstr "C API 변경 사항" msgid "Other changes" msgstr "다른 변경 사항" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "검색 결과" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "검색어와 일치하는 문서가 없습니다. 모든 단어의 철자가 올바른지, 충분한 카테고리를 선택했는지 확인하십시오." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "검색이 완료되었으며, 검색어와 일치하는 ${resultCount} 개 페이지를 찾았습니다." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "검색 중" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "검색 준비 중…" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", 문서 - " @@ -3441,30 +3498,30 @@ msgstr "사이드바 열기" msgid "Contents" msgstr "내용" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 개 열 기반 색인을 찾았습니다. 사용하고 있는 확장 기능의 버그일 수 있습니다: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "각주 [%s]이(가) 참조되지 않았습니다." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "각주 [#]이 참조되지 않았습니다." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "번역된 메시지의 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 인용 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "%s:%s 참조 대상을 찾을 수 없음: %s" msgid "%r reference target not found: %s" msgstr "%r 참조 대상을 찾을 수 없음: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "원격 이미지를 가져올 수 없습니다: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "원격 이미지를 가져올 수 없습니다: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "알 수 없는 이미지 형식: %s…" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "건너뜀" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "실패" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "%s 영역에서 문제 발생: 필드가 '%s' 역할을 사용해야 하지만, 해당 역할이 도메인에 없습니다." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "알 수 없는 지시문 또는 역할 이름: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "알 수 없는 노드 유형: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "읽기 오류: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "쓰기 오류: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "잘못된 날짜 형식입니다. 바로 출력하려면 작은 따옴표로 문자열을 인용하십시오: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree에 존재하지 않는 파일 %r에 대한 참조가 있음" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "기본 역할 %s을(를) 찾을 수 없음" @@ -3615,27 +3672,27 @@ msgstr "%s 노드에 할당되지 않은 ID" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "이미지 크기를 얻어올 수 없습니다. :scale: 옵션을 무시합니다." @@ -3652,13 +3709,13 @@ msgstr ":maxdepth:가 너무 크며, 무시합니다." msgid "document title is not a single Text node" msgstr "문서 제목이 단일 텍스트 노드가 아님" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "각주" @@ -3677,20 +3734,20 @@ msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다." msgid "unknown index entry type %s found" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[그림: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[그림]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "캡션이 그림 안에 있지 않습니다." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "구현되지 않은 노드 유형: %r" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 74251dc6f96a6f52e356e27baae2ccb82e11350c..1ad10938bd55c790a549ce3fdcfbc4e0c146ba66 100644 GIT binary patch delta 2105 zcmYMzduUc=9Ki9P?c&zn*E!wAnz|_)Wig%lnz+DA8cGTyTg5VDkPs8X%Y=f;Q$mJe zMP7pP4=cq8qO?~kjRh95NX&w2BsC0Tr38i~D_hq0J0579y`Sft^PJ~*InOz|;O{~< zG^uod@VA}+sr=_kJ^TM}bbLgf(|@oGt12QYu?9VF#2TD|lW{)Q<4T-}>u~~Z!e-o# z&OeA%5m_8#;DY_=g9GS;L)d_qa0-rRQVyHZKyBEL%dio*VjaGK9C0}L4zfgih>P)5 zI*;ouEMqbQii-wxfu^w=5ev{nmg9}sg)X!SStB09a@>I&v5OxQ*@t%KC|ddZ=={&n z0?(oy9mdJTk3Se(hZXe0%Bs+}(1bqNf-X24O|X!>3!UGCGjJPLMS?U z`dK7o{D7H*Ul4T4@=p7;pkQuLbYGIcQ~Du?3$-jyS@P9Vwz6J&7z8pQQ6I z)BW$Tmg_&}=)V&#bHN3#p)Jglg{_~3Cenel=RKaz zccAM%htqIx-uKVo7#9ri5!&hjB$qgYeii4?03+!9QM7_`vUYPeqSp&(fW^p^Sed*R zUH2iJiM{E3cgDaB_at9QzJ^xtCK~u%G@;|j5vTYu&{t@uzE9ULq8D}Per~6e!)T`C*y;?U8e4HDI)4@VSv`Ozyai44 zNp#ch#5?gNH1HtWv7fQh@Baz|clp0)hIPDH6KKV;3eZ>4i3YqMeb>EcpgwdnJ%P6P zRrD3Sj?U{xKhFU)@CCHst61*$UrY4q*oZ#RfiAQH4X_&BWL@aIN6?CQ<19Rs&d=aj zWoW0apq;B=vex6+XN<;~gPD~rVqoRV(v7>(fa}l)w&5zw&=!76a<{0XgK1PxS1c2n=&x*P?;fp@}_(enrn`46JBx@&LNfp)}!bw6gcm!2Rj|*Jwx1rR%?< zn`{()CDYl#253juyA8P&OVB;io$gm|WMF{J#mb7`ONv#wZ%Xoow)R5X+(Prb`5p5X Y7JsY0G_IsDyS+G6(^p#DP`{@1Ka07vVgLXD delta 2156 zcmYMzZ)lZO9Ki9DyUpqD+MIKD*Qwo=vi|9Ib+#c)$TSVDSSy1t&~U+4PSSlIVF4>X?L&-0w;ob&sg-#O2X zrjHjVmn%~Pfxm?RS^QU}eER<{T@peWk7al}*5VYbi_iDtG@kP~9UsPOdp_zgO67#(;OGk6ngFhi#_Hll%Au@T#_7I)$dJb+wbF#0JnMHs@R zcp*MlOm$%_JIl>vUeu!#G)%k*VFj8?SSc9&t7TtvgbYK%Y;Ziig<X(yto-VR1wt)b7(0W&@EVvCbABlr~|D`4;p9(7U52G0lVV+el&pr zwBP&j`7k=)u`=pEo0}6fIN?P!z>jFjuOPXFG4$*B2Mv%VOZ(437jO@HNLyq3S~S3V zWJu_YZbRpN1MkBABsLsJGaQVbik?MR@D&>P0-Dgb$Q6F!$3WN7O5KR__HH!clHKR437l&Y*|#d-SvWBU-{yH_^M1rjW;ZxE$@@g??VI zq6xo?CVCK^{|K(Y0=kfKtnm9UW&_>J40_7z&g#foXP>P zG7acF521-aidN=HuY9b4*CL34u02*is zx`1V9z%^*1PormHJ(}oC=)$(g_B}P!-^>SSaDq?JL_SBiWEdTA8C}6uG(eh@YX2E% zf_EZ0hDGT6)zPQW1wMz)yEV4IiN@WRaARgC(9h{Cx}u@zd33_>;`^V`mHmzez8>Ef zb5gBHIoduOJ#2Y&OWM)-JJ9)FM23d!R&G2jdt--#Xn+q23ZK$5Q_RIrzb{ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 9921c15bb68..6830a27b030 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: DALIUS DOBRAVOLSKAS , 2010\n" "Language-Team: Lithuanian (http://app.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Įtaisytieji" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modulio lygis" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (kuris yra " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%Y-%m-%d" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Bendras indeksas" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indeksas" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "kitas" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indeksas" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Leidimas" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Skyriaus autorius: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Modulio autorius: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Kodo autorius: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autorius: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,82 +1929,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametrai" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Grąžinamos reikšmės" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Grąžinamos reikšmės tipas" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "narys" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "kintamasis" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcija" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makrokomanda" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipas" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nauja %s versijoje" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1967,346 +1944,423 @@ msgstr "Pakeista %s versijoje" msgid "Deprecated since version %s" msgstr "Nebepalaikoma nuo %s versijos" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Išmeta" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasė" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasė)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumentais" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Išmeta" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Grąžinamos reikšmės" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Grąžinamos reikšmės tipas" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcija" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasė" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribudas" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modulis" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Kintamieji" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktyva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Sukelia" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rolė)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktyva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rolė" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametrai" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "narys" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "kintamasis" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makrokomanda" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipas" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "išimtis" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (atmestas)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktyva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rolė)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktyva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rolė" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Kintamieji" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Sukelia" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "aplinkos kintamasis; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "aiškinamasis terminas" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "gramatinė leksema" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "nuorodos požymis" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "aplinkos kintamasis" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programos parinktis" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modulio indeksas" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Paieškos puslapis" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[šaltinis]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Padaryti" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "originalus įrašas" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumentai]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modulio kodas" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Kodas %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Apžvalga: modulio kodas" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Visi moduliai turintys kodą

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Dėmesio" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Atsargiai" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Pavojinga" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Klaida" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Patarimas" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Svarbu" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Pastaba" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Taip pat žiūrėkite" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Patarimas" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Įspėjimas" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Paieška" @@ -3342,34 +3401,22 @@ msgstr "Kita tema" msgid "next chapter" msgstr "kita dalis" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Prašome aktyvuoti JavaScript, kad veiktų paieškos\n funkcionalumas." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "ieškoti" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Paieškos rezultatai" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Greitoji paieška" @@ -3406,20 +3453,30 @@ msgstr "C API pakeitimai" msgid "Other changes" msgstr "Kiti pakeitimai" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Paieškos rezultatai" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "Išplėsti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Išnašos" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[paveiksliukas]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 0431f74e17edca7d04e12825029c4d1b1368c270..0f8699daeedf00b0a13085bd30e18ab1ccd93b82 100644 GIT binary patch delta 2094 zcmYM!e`r-@7{Kvo?QU+)d2@5F>8$JQ%KpeTZ`YVmD64J28j% zqvJPW13rtaSB@9BaN>S+;@jAYC-6Eviw3xY-B`=48Q6m@SVE3ipX^75#t!VoU8(&E zHq!nI$vK9wh4?X&Zv2fVP&YARI<}z;6_HzUJJ#YdUef;8gl| zr28+S>%59q?(ih)Z^=KS!vxNyfx~Deen$h1S)YK@A_R0UOYFqaCeK0eu-)pn)I8PV7g=zk+Vy zFj~Q*=x2R0-5){{FUKV={M_oBA~@nkPF>i8X8s5o_-S;Zy~)?mL=U3hc?Er@SJ3hQ zr2A9J(nmKFtv~^}6^qgLFG^fksx@eUK6K$t=!9)(g1ga2G=StBhtPS)(3k5Za>UP^ zd?bIN>opPGccvX(cYd-LC;0s@ic{e1w+z3|is~$m5K$)UIXQ zR-hH_pN$4Apz{`?8@LyZSHiLxZs1}eZbkziL3j8u`Z9fojys2zZUkL;3|-Ldd{lMl zGw(ph-HcXZ3A)}x=sJ%fQ)AmS>hFXX>F{McfR=P14Lq297kw1R(H(w~+TW-97tnc^ z(a&uRO>jEfH1KS6{rTuRi?9>#X{G+|@Nqi)#d{LX>=|@N`%?cPy5KQ%XQz-O&T_H> zf8ZP(PwgBJ-0_`gV)M{(3zCb`cz2h%@L86S#~AC-47Z|*JcsV!0N#K{&`0z&n)oof z@UM71UPi}f$=>_3&_HwCO|EnO#$4pr=JM-q%H>x@zCSlucf7iCy5WQB#^T)W;@o+~ dT;Z163O$v5*)3Jo#jfs3^OQoSva)4z=3h#?xAp)4 delta 2129 zcmYM!e`u9e7{Kx4?lqm;yl#2-LrrhX>10jZ+ESxdlo<&{!D=ZHGqJiA8@9F*9WVYu zM?{e*l5 zLt`>lmhKPy_42=f|8&~c|9_J+LYPkT7c9gpvHdre(oW3`;YQ42IWEIFcn{9TM=^)( z==dF2g!_?rNf_k9iAT_hr?3J?u@Zkm7bsx#3M|L@_yA^c6Y>dLqq~qP;dN}mw`2PP zme3wUau1W3W&Ln9-k3FODuGIz$AD#Mpf$*l@DSdBZOA7)#g~cX(F*NBcl;VU{vC8< zL+HXI=te%r0{qT4>xWBRSoN#u#6Qr0DeB}73!{tB0L^$aK8P870gG{4Z0|!pVIcMo zAtA$Y^awtQ?Q@v8@HbpsFAcimNp#`g(1}GvzZc8V9j-?ge2y_ZpydPORyoh`*0o!qbVx%i% zqqm@O8?YKz#`Xp@(e@->JR9vmchZe6+>0i(6ZwQU_;R5GXvGf2{u5{=KSQ61adiF_ zbfIflh5w=nRx!x?$x<#1cq?9K5oC+Ev;WYZtjiROf8XY$l{SiHqU(ubK zz3pOj+&pyNV)V7ELlb-$UAPU6pRb_)PVA(k7JJbhzK{O$9YquS7~Rp?*gt^=yo~Pb zPvjFyIAAMKgG;bJwp-EhPojx!j{Pqt@#1B4!R_c7?nRC_44?@fLlYT6cQA^Ja2!3N z6xo@01)9JDT!@R&@%P31kD=>qz>urW4_}&bE|qyDm+#2+Y<{UL-`SC?=^8#-bTU

AH>G9bHp1o~y(Itu diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 57d93b5f79e..27f8739393d 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian (http://app.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Iebūvētie" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Moduļu līmenis" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (iekš " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Vispārējs indekss" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indekss" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "nākošais" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indekss" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Izlaidums" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Sekcijas autors: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Moduļa autors: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Koda autors: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autors: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,82 +1928,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametri" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Atgriež" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Atgriežamais tips" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "loceklis" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "mainīgais" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcija" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makross" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tips" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Jauns versijā %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1966,346 +1943,423 @@ msgstr "Mainīts versijā %s" msgid "Deprecated since version %s" msgstr "Neieteicams no versijas %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Izmet" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klase" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Izmet" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Atgriež" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Atgriežamais tips" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcija" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klase" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atributs" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modulis" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Mainīgie" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktīva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Ceļ" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (role)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktīva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "role" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametri" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "loceklis" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "mainīgais" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makross" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tips" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "izņēmums" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktīva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (role)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktīva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Mainīgie" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Ceļ" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "apkārtnes mainīgais; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "glosārija termins" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "gramatiskais marķieris" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "atsauces virsraksts" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "apkārtnes mainīgais" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programmas opcija" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Moduļu indekss" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Atlases lapa" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kods]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Jāizdara" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "sākotnējs ieraksts" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumenti]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Moduļa teksts" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s izejas teksts

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Apskats: moduļa teksts" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Visi moduļi, kuriem ir izejas teksti

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Uzmanību" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Uzmanies" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Bīstami" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Kļūda" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Mājiens" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Svarīgi" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Piezīme" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Skat.arī" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Padoms" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Brīdinājums" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Meklēt" @@ -3341,34 +3400,22 @@ msgstr "nākoša tēma" msgid "next chapter" msgstr "nākoša sadaļa" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Lai iespējotu meklēšanu, lūdzu aktivizēt JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "meklēt" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Atlases rezultāti" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Ātra meklēšana" @@ -3405,20 +3452,30 @@ msgstr "Izmaiņas iekš C API" msgid "Other changes" msgstr "Citas izmaiņas" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Atlases rezultāti" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "Izplest sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Vēres" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[attēls: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[attēls]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 9d00b900e8ded4ab7f3efba569e4ac83d15c0aa4..045073c0fb41d4a157767049da015a84a9fccc48 100644 GIT binary patch delta 35 rcmcc3f17{96=q%&T>}$cLlXrfV=E)`%@3J-8JSJ=3^o_CW-$Q($MXs| delta 35 rcmcc3f17{96=q&zT>}eULvsZ~6Dw1T%@3J-8JUgr3^y0DW-$Q($g2uK diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index b537f7bc384..800a7bea26b 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://app.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Предлог за подобрување на Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Вградени" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Ниво на модул" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (во " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Главна содржина" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "содржина" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "следна" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "претходна" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Автор на секцијата:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Автор на модул:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Автор на код:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Автор: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Параметри" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" +msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" +msgstr "%s() (вградена функција)" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" +msgstr "%s() (%s метод)" + +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "%s() (класа)" + +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:255 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Фрла" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "член" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "променлива" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" +msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "макро" - -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "класа" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "тип" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" msgstr "" -#: sphinx/domains/changeset.py:23 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "New in version %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/changeset.py:24 +#: sphinx/domains/math.py:63 #, python-format -msgid "Changed in version %s" +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/changeset.py:25 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "Deprecated since version %s" +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "%s (directive)" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "Citation [%s] is not referenced." +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/rst.py:213 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Фрла" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "класа" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (built-in function)" -msgstr "%s() (вградена функција)" +msgid "%s (C %s)" +msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (%s method)" -msgstr "%s() (%s метод)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" -#: sphinx/domains/javascript.py:167 -#, python-format -msgid "%s() (class)" -msgstr "%s() (класа)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Параметри" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" -msgstr "" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "член" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" -msgstr "" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "променлива" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "макро" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "тип" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "Симболи" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3342,34 +3401,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3406,20 +3453,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js index 894d35c5a7e..6a286984335 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js @@ -1,60 +1,60 @@ Documentation.addTranslations({ "locale": "nb_NO", "messages": { - "%(filename)s — %(docstitle)s": "", - "© %(copyright_prefix)s %(copyright)s.": "", - ", in ": "", - "About these documents": "Om disse dokumenter", + "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", + "© %(copyright_prefix)s %(copyright)s.": "© %(copyright_prefix)s %(copyright)s.", + ", in ": ", i ", + "About these documents": "Om disse dokumentene", "Automatically generated list of changes in version %(version)s": "Automatisk generert liste over endringer i versjon %(version)s", - "C API changes": "Endringer i C API", - "Changes in Version %(version)s — %(docstitle)s": "", + "C API changes": "Endringer i C-API-et", + "Changes in Version %(version)s — %(docstitle)s": "Endringer i versjon %(version)s — %(docstitle)s", "Collapse sidebar": "Skjul sidepanelet", - "Complete Table of Contents": "Komplett Innholdsfortegnelse", + "Complete Table of Contents": "Fullstendig innholdsfortegnelse", "Contents": "Innhold", - "Copyright": "Copyright", - "Created using
Sphinx %(sphinx_version)s.": "", + "Copyright": "Opphavsrett", + "Created using Sphinx %(sphinx_version)s.": "Laget med Sphinx %(sphinx_version)s.", "Expand sidebar": "Utvid sidepanelet", - "Full index on one page": "Hele innholdsfortegnelsen p\u00e5 en side", + "Full index on one page": "Hele registeret p\u00e5 \u00e9n side", "General Index": "Hovedindex", - "Global Module Index": "Global Modulindex", + "Global Module Index": "Globalt modulregister", "Go": "G\u00e5", "Hide Search Matches": "Skjul s\u00f8keresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", - "Index pages by letter": "Innholdsfortegnelse per bokstav", - "Indices and tables:": "Index og tabeller", + "Index pages by letter": "Registersider per bokstav", + "Indices and tables:": "Registre og tabeller", "Last updated on %(last_updated)s.": "Sist oppdatert %(last_updated)s.", "Library changes": "Endringer i biblioteket", "Navigation": "Navigering", "Next topic": "Neste emne", "Other changes": "Andre endringer", "Overview": "Oversikt", - "Please activate JavaScript to enable the search\n functionality.": "Vennligst aktiver JavaScript for \u00e5 aktivere s\u00f8k.", - "Preparing search...": "", - "Previous topic": "Forrige tittel", + "Please activate JavaScript to enable the search\n functionality.": "Vennligst aktiver JavaScript for \u00e5 skru p\u00e5 s\u00f8kefunksjonaliteten.", + "Preparing search...": "Forbereder s\u00f8k \u2026", + "Previous topic": "Forrige emne", "Quick search": "Hurtigs\u00f8k", "Search": "S\u00f8k", "Search Page": "S\u00f8keside", "Search Results": "S\u00f8keresultat", - "Search finished, found ${resultCount} page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "S\u00f8ket fullf\u00f8rt, fant ${resultCount} side(r) som samsvarer med s\u00f8kestrengen.", "Search within %(docstitle)s": "S\u00f8k blant %(docstitle)s", - "Searching": "", - "Searching for multiple words only shows matches that contain\n all words.": "", + "Searching": "S\u00f8ker", + "Searching for multiple words only shows matches that contain\n all words.": "S\u00f8k etter flere ord viser bare treff som inneholder\n\u00a0 alle ord", "Show Source": "Vis kildekode", - "Table of Contents": "", + "Table of Contents": "Innholdsfortegnelse", "This Page": "Denne siden", - "Welcome! This is": "", + "Welcome! This is": "Velkommen! Dette er", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", - "all functions, classes, terms": "alla funksjoner, klasser, vilk\u00e5r", + "all functions, classes, terms": "alla funksjoner, klasser, termer", "can be huge": "kan bli stor", - "last updated": "", - "lists all sections and subsections": "liste over alle paragrafer og underparagrafer", + "last updated": "sist oppdatert", + "lists all sections and subsections": "lister opp alle avsnitt og underavsnitt", "next chapter": "neste kapittel", - "previous chapter": "Forrige kapittel", + "previous chapter": "forrige kapittel", "quick access to all modules": "snarvei til alle moduler", "search": "s\u00f8k", - "search this documentation": "s\u00f8k i dette dokumentet", - "the documentation for": "" + "search this documentation": "s\u00f8k i denne dokumentasjonen", + "the documentation for": "dokumentasjonen for" }, "plural_expr": "(n != 1)" }); \ No newline at end of file diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index ce5c2e556168c1885c8d88cb981c19db20665bea..019f627a20d765f7970e4dfa0d0a5cc6d1203381 100644 GIT binary patch literal 7786 zcmb`LeT-b!S%**aQD6xnG;P{a+8jIHWSw|+?Tsn!+D@}xuVdF=8}G(dl}6T`nX@z3 zbLZaaJ$KgL(pHUH2~|Z^MWCn^DOAFV+C~t?phh%*kXoV;DjA_vKm|c1fXxN6@CWZ2EPPvfzQL6;a@@vzYW#@x(Q=`8om+IWGvLU zyP?L-!#Be-@GbB>ya|2`YMoERyW#Ib*>@H0hTnv5gRf`uH^J>t^Y4p11b>p}6YxIx zP<;M%D1RS^KLNiCHU2W(3;!&>|8FS!Zo-(Khi`|PZy(e;^Y9Ej4qp#H4>8GHg0kyr zD0{yFLtLQ7eH+UE??Tye9Ut=Z7I+=p5ufjZ+N%9f$iVE=8_FjsFnb20smd z7Cr-6!h9`0Uxm12{yw&U7s}p$kGviu)s9(pB<1cW*3zIb5QFqK#hMNJOtZN zc039BYre|I4){WB|7R$BuE#jV>lUc_-wb8f?eY1Z`2Jq_M%w4%`_oYKJ`9h-^H6cV z3>BZN@HqS%C_g6okiGAOn*ZHU`FI?v|07U#bl~+chw{6O?=L{v_bBAA`2-*8|GC)y z1*rMI2;UB$ftvR(pw{~q)PDUFl;7WjI)DEGwg0zajMi&Fjhlt?_W;y6crdn~hgzqC z+J_HEeiCZ_&qB@r+fe8Bsn~uM%HD5A{%z#TP=0*}YW;tM8vjG6_}=h_y8TwDb>9Lp z*=&P)KMNK2c}S?uBT)17q1G$mTj6?qehexepM$dh38?(}1E_H?K&^8X{?+S@`D>{D zPZJF7%X3hE{V`OWUWW4f`%rfM0P@$|z@&=nTcO%_L#;Ot?|`SF?DbH2`?1JRL5=$? z)VQai;{SZ)x1i?v0VG7`b#%TP-U?;^eefQ*0OfZ9WzQ#|{Q5kUA5TL0^<}7f^c5(7 zUV-YbBB=gvf;vaf<`2H+ZUY>)B%ZDJYnqPsk`*A3Hz5q4;525z?kD&J9d8qzhhw}gLp#1qEwD2Yx zG08Nb=3j(*zXY`(F18ONKN|VT`2I6cem()U{_n;1%TWGZfh=Xd0X6?W!Ugy*PaxHq=HA8P$(WE$HCQ1-9I=Z`>*|2S0K9)q&$OHloOA8Ng?K*jA( zq2m4`)V_Wn%8vhm8h7J6>inL7YQGC=Tmx#IcR|JTC{+LVL;0UTW2f3~P`Xx9x%N(; z(%hQKsns-ddD3?~y}k2}eY1OJ_uI*-cG2=xT4l7F$)=rb@3NEcGn3v<^6c#t|B|XI z)8?>pJ3~uzm}XUjDO*|M{WWcCNtq^1W(!?I4@=j{*sq;pRh6#A_noY0CYc=#vPEfI zMeeI4uj&aH+ArF}%#CNLAM3YeQ7<&LGuTK+;}>Fam%&0<*Ds_VS7?BcNR^2(d} zvNQTtRkYxVnI968a?a{Y(UBp z($1&3Hw$)t>DZ{ZSxAOqnT0UAy=63gH|9M1>N#H{6BiT?rmf9hD6%XW;HFR8u9=i( zq391XS2??)P|5OzBA2%;xA7(JiCHLJ@N($Wykid}w#z0R+}^FKfuEb1xp3jav>$ZS z{9=PJP8VfoX8V21q2a(xavu?>-<}%>V%i*5oJwjM1XopCKyx{a#=VFUe{6yL;lX88W7F$e>592M3&q{j}zh`dEW#&|}mUc){ z()N_QNPZWCv}H~ec_YaN-K6P4_R>%}b86Ucl2Yb0hk(jaCz?4;qCGiEPqDjA<5EeecCLQZa~Q+ zuj)S2)1hrGErveYzO+sn=XNp2zLwJ|wM%6&D14In{dQ?_i4$#Nr!6siaG17wab9yK zNj-ae#s!;UH7s*mtq)xM?oFKr5p411(jHS}Nr@G|pK*Seabn`*YMQ6M>!|;$#gL8P z@yliCu)tIG;gFJ3ey62;v^XoBO>waw7`l>J#ECAX6&-%$`izUcG=qv+9}`l}vb|80 zZBO!3mwdOl;Om7*!m688x)rJ<&BG2*yXxLrF_h|!O0n$N&de8PnK^7-InAq!#7dV^ z8)C82Em_R0qyw{3v^d#&@f6`C3{Qc}TU<-TEUNDFoiQi!C<@2X17&;a>J$XIZwJ4hN>6l%#Xd zlJ-4>S5Q?mZ|AS!#>gnGb~1le8#gI*Gx&dPQ%j|E_eZ(%iKa9SI5J z!y%6#?MRW)wOZFBPjV42K{*z_Z5i_6OsOQ%;F;X3f@W;X8L(bqjQSzKo(EHkrnVksMzN!B=0aF$qn5FY(O zBy9cl;8bq69khFP?w>e$?BwD`Z1+s>o`{;Du|l<+Bd0G`GlPtBvR}DVdRHABR;!JD z8~tP-8PZtHxiTmMb9P@dttRRl8Nt*zv_5AKDRu1Z^q##efyidBUDkFe*QxaXCb!$u zR+9TQn=7WGwTMGgdUe${j^1GW4g;Swz{`f zaMyR`c!qFd>fs!cEpoeFjkC-ht{xk5duv0G+rFpzw&}&U73pWo2i8-51Cy~&;* zPi~LZc2ZA)tKBtjoL#7aGXzhO5kc zn+^9AEWLGAoFvF}ROY4;n(>;sUqfk+jpwJwMr`=4u-rR8q@bfOk*%nXD(F;?%5J9} z3xd*af}JXEcvwcsARP;2he9K|DBQmb%CksMsPWUqWN4-=WA>=nm;Lw4hV?y6CL z^T3r$qxf8Tw#NigQb|=S@3SdKt|JkRY!9EWlHF(G!isKb2mEUmJ{Gj~zQHt7}KL>~rvjJr3_TcD;Vi(>2@+ zI@~E)(cuKix;}Y-tk-i0@ztQieb1b9WiLb|K$}8%l!XYJ&p3kS17|08!n5u{UhmSs?HdI73 z|Hqc%b?lA~OLkOKk~f$}Vs$W4IUjWRW*N@AS8{Nb-+`-F zo-HdRI6vI3Rp1&pRqnJNRp^txrxf6*j+QKAk5Dw!98|GZZgPbxRkr*HP(RX1@53)W zyGnYIYh~M_6qJU{X_;tsH7uh7sblWSiLd>R6jbQDQSekVIO%y>RjL@uT2JnrMLKP4 zax4p5O2uJzyZ$+!o8u%iRw2RB;hQyhxl!-Vx~y095wzRvVOee&fDW$YCQtT)E7`heQ6mIutFzP+H-U{^TxCa zyE%T#Std=nRIo6-84GjewCShW`76(k?(AzGgBItfR?;&gqY=PuX=@iHc$M~gTU5B; zQW$~`XA`Lu^DmrI9v zsRz`0>ObF=swxko5a^gGP~o_Z2SruBmSptIlXA_awo0?wz_2LG1wD@Da$IsLN1>7; pmn0`s!v{BAJEY8(J?Ga5+c7CgUT0qTE=fL?8|In;*D7+{`d{5xB9Z_A delta 2819 zcmZY932anF9LMpgAj;8$7JASYo=CAA<*1;DMW{fbDIkcV1{JpKP##@&*L|-=lw?H{ zHJYf&ctk`(q7aSofU0TYl~95~;}I2%lBgIW-tmZvi3Yzv7)4|Ax}P`mX8!a4&%E8Q zn~pZ-KPm11fZ^{}{%iQ3*k7&Fe@$l_Q%G|bo{4QZ5SRJ(N*qc%fn^wBIo^RKxE+h| zSq$)1)c8+vurYb_BR2~8Cu-tZG&FG}R^Vi;#05A6SECl%fKzY_R^uKVj&CEEIqLl$ z32lz!C0H=%RC^8I}zBk+Dypl4AF^x^>Ai(KXaA4=o{ z)K2|?s{B{f_%kV21s0=rbS##!zM00&8Msg#*oHcVRj7$cRKPSU!Pt8jYWxm72cO4c zJcQb*FMRuFjzwo3YqU z;=G3aa6hV$H~jN=Pzij58h6CEzbs_`74Qc-YVmhezzSB^0_UK%z5!Ly`KWKn9Ml5W zp~knP3P_<|)-Aq&D=PluNNDr4_a#)^19@&nbMubx_z9KaaqkK501j3a6rvU$j!I|* zGQ^yRTId4QPR;iHOHn(x3c1Y9d}#jNsCDx9aZ|<3L%w4-s`6e`#`{nc-a{?$As#F+ z<}=i|7kPoS<$F;(u^(00yQoACp?2mN>h1r-_m`EPjGs4SxH*>xjYv$h0`-!u_1=J* zxEU4Dp|<#O?<=T84yGFi4PU96qWEbI9T8R>$uSmLx`&22~?mx zs0sU!%e=*hz6D26&woR`3j--nM>7^Re-diPW}xQJLM77T`&XmpTRqqJeZQCC$KWzlLfxowccKz^|y`l zF;x2*RHePhF`8F=|GTKO{us6Jm#Cd7pgbis9QAx8>gAk>+Nl|+c(c9pQ0uf-`0xL6 zI#k)UsIyFYW7JRUX4Hi3sIT1j{~TMj-e9z7PS+CdMYJLB7)WnNX3oJm5TY;)%C7Pflj&A zpUkX@;xJCxagiHSQtz%Wnc%jTY<3MpBlq;s4p&vW&AnN=rttiRDKi?TUKmWBHgoz6 zcX8S5s+KDkEee)2FPa{=1B}kQkkr zqz#C-HW9}*H#0EHJJ)xmf+%ET5^0;Vv1!X}$YLC{x*ZkOwR1DsO}VgRU2IwsIcr*c zE~jqX_{y2H!gP9FCY6i`8`}`I;N zaoZ}J>stRGA;{WX(4Ogx;zYM;)m(R?a#``oiGLT6$hr2a@uN18>whX;Vx!mwc0<~l z%i1Hir>ea+(HVyvsSTpO-p)x%o|XhXWvejsA+TiYgRR+LM=pfxge2B*&v(9B|376wX`!GK^Ix)PItML rwU-SftQIycuD5n&5sL@OOlQ{yn~rVl#*Q3a6mQB}!zqS|cFyrHBp#r; diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 412ce07bd6e..b705044dde5 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -1,20 +1,21 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Per Christian Gaustad, 2024 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: FULL NAME \n" +"Last-Translator: Per Christian Gaustad, 2024\n" "Language-Team: Norwegian Bokmål (Norway) (http://app.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:323 sphinx/theming.py:374 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Innebygde" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(i " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" -msgstr "%b %d, %Y" +msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Hovedindex" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "neste" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Utgivelse" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " -msgstr "Seksjon forfatter: " +msgstr "Forfatter av avsnitt: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " -msgstr "Modul forfattar: " +msgstr "Forfatter av modul: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " -msgstr "Kildekode forfatter: " +msgstr "Forfatter av kildekode: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Forfatter: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,82 +1929,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametere" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Returnere" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Retur type" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "medlem" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabel" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funksjon" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "type" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nytt i version %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1964,348 +1942,425 @@ msgstr "Endret i version %s" #: sphinx/domains/changeset.py:25 #, python-format msgid "Deprecated since version %s" -msgstr "Foreldet siden version %s" - -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "Frarådet siden version %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Kaster" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasse" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Kaster" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Returnere" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Retur type" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funksjon" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasse" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attributt" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variabler" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktiv)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Hever" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rolle)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktiv" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rolle" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametere" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "medlem" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabel" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "type" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "untak" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (foreldet)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktiv)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rolle)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktiv" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rolle" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variabler" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Hever" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "ordliste" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammatikk token" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "referanse-etikett" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programvalg" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søkeside" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kilde]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "opprinnelig oppføring" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumentasjon]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modul kildekode" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Kildekode for %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Oversikt: modulkildekode" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Alla moduler hvor kildekode finnes

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Obs" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Advarsel" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Feil" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Viktig" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" -msgstr "Obs" +msgstr "Merknad" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Advarsel" @@ -3188,27 +3248,27 @@ msgstr "fortsettelse fra forrige side" #: sphinx/templates/latex/longtable.tex_t:63 #: sphinx/templates/latex/sphinxmessages.sty_t:9 msgid "continues on next page" -msgstr "" +msgstr "fortsetter på neste side" #: sphinx/templates/latex/sphinxmessages.sty_t:10 msgid "Non-alphabetical" -msgstr "" +msgstr "Ikke-alfabetisk" #: sphinx/templates/latex/sphinxmessages.sty_t:12 msgid "Numbers" -msgstr "" +msgstr "Tall" #: sphinx/templates/latex/sphinxmessages.sty_t:13 msgid "page" -msgstr "" +msgstr "side" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Innholdsfortegnelse" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Søk" @@ -3227,35 +3287,35 @@ msgstr "Oversikt" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "Velkommen! Dette er" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "" +msgstr "dokumentasjonen for" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "sist oppdatert" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "Index og tabeller" +msgstr "Registre og tabeller" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "Komplett Innholdsfortegnelse" +msgstr "Fullstendig innholdsfortegnelse" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "liste over alle paragrafer og underparagrafer" +msgstr "lister opp alle avsnitt og underavsnitt" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "søk i dette dokumentet" +msgstr "søk i denne dokumentasjonen" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" -msgstr "Global Modulindex" +msgstr "Globalt modulregister" #: sphinx/themes/basic/defindex.html:29 msgid "quick access to all modules" @@ -3263,7 +3323,7 @@ msgstr "snarvei til alle moduler" #: sphinx/themes/basic/defindex.html:31 msgid "all functions, classes, terms" -msgstr "alla funksjoner, klasser, vilkår" +msgstr "alla funksjoner, klasser, termer" #: sphinx/themes/basic/genindex-single.html:33 #, python-format @@ -3275,11 +3335,11 @@ msgstr "Index – %(key)s" #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 msgid "Full index on one page" -msgstr "Hele innholdsfortegnelsen på en side" +msgstr "Hele registeret på én side" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "Innholdsfortegnelse per bokstav" +msgstr "Registersider per bokstav" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" @@ -3296,17 +3356,17 @@ msgstr "Søk blant %(docstitle)s" #: sphinx/themes/basic/layout.html:135 msgid "About these documents" -msgstr "Om disse dokumenter" +msgstr "Om disse dokumentene" #: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 #: sphinx/themes/basic/layout.html:190 msgid "Copyright" -msgstr "Copyright" +msgstr "Opphavsrett" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "" +msgstr "© %(copyright_prefix)s %(copyright)s." #: sphinx/themes/basic/layout.html:212 #, python-format @@ -3318,7 +3378,7 @@ msgstr "Sist oppdatert %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr "Laget med Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -3327,11 +3387,11 @@ msgstr "Søk %(docstitle)s" #: sphinx/themes/basic/relations.html:12 msgid "Previous topic" -msgstr "Forrige tittel" +msgstr "Forrige emne" #: sphinx/themes/basic/relations.html:14 msgid "previous chapter" -msgstr "Forrige kapittel" +msgstr "forrige kapittel" #: sphinx/themes/basic/relations.html:19 msgid "Next topic" @@ -3341,34 +3401,22 @@ msgstr "Neste emne" msgid "next chapter" msgstr "neste kapittel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "Vennligst aktiver JavaScript for å aktivere søk." +msgstr "Vennligst aktiver JavaScript for å skru på søkefunksjonaliteten." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." -msgstr "" +msgstr "Søk etter flere ord viser bare treff som inneholder\n  alle ord" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "søk" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Søkeresultat" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Hurtigsøk" @@ -3381,12 +3429,12 @@ msgstr "Denne siden" #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "" +msgstr "Endringer i versjon %(version)s — %(docstitle)s" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "" +msgstr "%(filename)s — %(docstitle)s" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format @@ -3399,28 +3447,38 @@ msgstr "Endringer i biblioteket" #: sphinx/themes/basic/changes/versionchanges.html:23 msgid "C API changes" -msgstr "Endringer i C API" +msgstr "Endringer i C-API-et" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" msgstr "Andre endringer" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Søkeresultat" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "Søket fullført, fant ${resultCount} side(r) som samsvarer med søkestrengen." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" -msgstr "" +msgstr "Søker" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." -msgstr "" +msgstr "Forbereder søk …" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " -msgstr "" +msgstr ", i " #: sphinx/themes/basic/static/sphinx_highlight.js:112 msgid "Hide Search Matches" @@ -3439,30 +3497,30 @@ msgstr "Utvid sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fotnoter" @@ -3675,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[bilde]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 255c85053f6f91d6d91f42d909f4c073cb0bb820..74340e3f09ac3eea900c5a23ac0cdaf1c699a146 100644 GIT binary patch delta 2122 zcmYM!Z)lZO9Ki82?`k*ObyK&w-8<*imiL8jyIZ%yQCqHAiTc7MC9hB~Y(ccqUkJ(` zl8m6}zd>e0WHbmY@J?SCm15LTS4f2~^3Mw~BqYJ;k43ESS5I_#c0bQK&vVZ2cYgPr zO%6;iPfpLN-X8cQ{I&AeP;Kk~Pi;Dc49yH)gE_no7smDyoK3qM=i;5%gd4CPM{pJ< zn8(-9_dmhw4SR?iC!9hDomF3W1p$i>YLMQA)6C8|gMBjf57vhUphaaMq+8^78 zkt=)``_CY;!v%CP;SX*MID=7UR)emz5e?XezE{El>_=C&72EMmG?D$t6^`&_Wlo@# zJ&lA2KgIT?`24S0>hFUpqB>y)EqN=NKnME#7PJxr=)|irh3nA7H^k?g(11hedn2*^ zG&=mK`(qqqm#FiVz2&;K%R4EV^Eju2iz1MWrtVI0L9aVAH>{v!JRN_64}(bF-E zCh`oLz&q&p(b#_q`)OasrMQeqZua~SapS~0aSiT678O#|iRyYa28GAS9Ehvqx09~sJ{aW)XhZhM@#)&bT_)fNi@LU=)`rL zO*dl`x@og$pap24CX2-d)wBMr{okvUeXTFk6 tUrbeUwMSB!Qb)1W(Ot^-+|=81YvoeiLsh9#XR)$z_7^pkJ6h7|e*rTuy3+sv delta 2195 zcmYk+Z%ma{9Ki8o7!Znx8fyIUnoy}|T+_kKfjHK1&8#$M!~QUHgcZ5auorT*7mckP z%}kpwvh23(h2(ZiTQhZzTy15v8q$_^%TX`NaC5n}O8S1|yofzKpL5RhoO6EX_ndP_ z8$Vr<`hLpzR|9`L`7iT-Jh%V-mF0&}NWC1d$N6{zCS(0hET-OwQ*jNJU>i=xZk&X@ zn84T3_fO%35K`eQ3J!Py?f47Y@fuFYA|B4bTX7;TM<-f^HQ0)!xCd{H-$5>AkxUf_Rb1CHUpcWmV;lBqVJb(tW5pTk+=s>;57~wU{#Y4yy-sNT>@1vO- zKvzD9zCVmEa0Jb0F3X?F{9zh}>+m)ka6bAK8qkhS=z#a20j`a1M&I9wvvDsL;W0E* zXJh?qxV0mIfmmKvVr4x`Ln3Q!#>0Fp=ndzZj=sDY`jpV*5&Tf;C8& zupzn`9d|q4jNP&RW{QFlz7y?>et@pv1Uhj)8qjCR6$ZIE(J-2+-(&kIx(O$-5!?&& zxY>UxI!^=6#JgfW^(X~b-iAipiFVk9PVfSLK8{_F2C#t*W6ImnOgx3ItP8oq4sNEl z7tPQS^z@v;1YU?`*m0LRe&r(^plHc&66bG7Hcg~Af-K?gpGtMELsxKKq}$bP6p`iAD{!+1CK zt+)tJV+&rvCS1*6ZnnKR3y-6p`aGJsi`or)dm(TQ5I8oST|(l{Uc(Uo4t z1Naxt!F_z_O8f}PZukL{cm>^jRiwp*RHK0`D<%K#@@5*G;9j)D7BrAUXv#l{{)(=& zm^0}FP3XYu(M|aXx_LLE6FrV*a69_mi^#qUd!p$w^1qITV>I}!3fXDyh3V)3&B&v$ z9^F*i&ou!Pwr0E!20UD7bmPMLYf+>sO;W zq{R$PMnB06G&2j)%-k2-yJGupTul2>bZ-o!pDdXe%fv&-&|wSK, 2016\n" "Language-Team: Nepali (http://app.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "बिइल्टिन्स" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "मडुलको तह" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(in" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "अनुसुची" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "रीलीज" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "सेक्सनको लेखक" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "मडुलको लेखक" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Codeको लेखक " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "लेखक" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,82 +1930,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parameters" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Returns" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Return type" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "सदस्य" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "चल" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "फन्क्सन" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "बृहत" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "किसिम" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "भर्सन %s मा नयाँ" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "भर्सन %s मा बदलिएको" msgid "Deprecated since version %s" msgstr "Deprecated since version %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Throws" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "कक्षा" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (कक्षा)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Throws" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Returns" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Return type" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "फन्क्सन" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "कक्षा" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "मडुल" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "चलहरू" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (निर्देशिक)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Raises" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (भूमिका)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "निर्देशिक" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "भूमिका" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parameters" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "सदस्य" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "चल" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "बृहत" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "किसिम" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "अपबाद" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(deprecated)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (निर्देशिक)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (भूमिका)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "निर्देशिक" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "भूमिका" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "चलहरू" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Raises" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[स्रोत]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "मौलिक इन्ट्री" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Module code" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Source code for %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "पुनरावलोकन: module code" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

All modules for which code is available

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "ध्यानाकर्षण" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "होसियार " -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "गलत" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "सङ्केत" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "जरुरी" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "टिप्पणी" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "पनि हेर्नुहोस" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "साबधान" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "खोज्नुहोस् " @@ -3343,34 +3402,22 @@ msgstr "पछिल्लो विषय" msgid "next chapter" msgstr "पछिल्लो खन्ड" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज्ने कार्य आगाडी बढाउनको लागि जाभास्कृप्ट चलाईदिनुहोस " -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "खोज्नुहोस्" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "खोजेको नतिजा" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "छिट्टो खोज्नुहोस्" @@ -3407,20 +3454,30 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "खोजेको नतिजा" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3441,30 +3498,30 @@ msgstr "साइडबर ठुलो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "फूट्नोट्स" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 3bdef52051c05796f3896d13dfe5fdc94b5991a5..d8da4385889203948f72ec013408b86b45eead52 100644 GIT binary patch delta 3988 zcmYM#3v8Cv8Nl&VS}uihE6`HfVxg^AdgIbU%dOB0D`?d$;27&1gKkp{h_iLms^8El z6@so*F$l~X+n^}Sbr(T591ItNBMVuKI)?EA8Q_eUY+-DK{r`R^SyTEu=Y8LE&U2pg zyf1y-DUWYXNu171dm`}jDgW~Lw`-ui|NoQ?4`C?Xa_o<@aUw3jbZm>)*WxJp?Kl#< zV*e@3qQ4JE;87fgZ(>0RiExI70|sz+2#!T3EV&CB&*?T=#JN+slOi$cmq1mPOQh>Xy6wTG)(CgG@@Y~paJDZOVKKx zjSg6WKG%+(;d*r9F7zmR(2Z=5{huNA7xtsiA4UT`hCY`#O~U}rqc!kvH1%WXIPq0z zaZN^dG#ee*h*tZJScs3I0ra8Iy@Ce(2V945;aptAN5=U#;8%SAyJ_6Tg>z_xD=5)a z{0>?Zw;}Zs*5MZe(S^Fvz_#H=>_x{{^Ntzd9Q3*7*uOFMThRd9FyHro4GkyWgr3zC zvA-9c=vTM^e~-&Cm3NC+!_8<>cA`hJ9$oNJtirA6bH~vQ{2krU6?DC{0s=|U7)HaY z%|_3@1RYo#y$Kz7Cw>*bk1lW$y*`jq_oy<^v&}~8G?bwWHDL?hfE~CKeSQ?*@x&q; z<7q6wTae=qy=cTo(Nvv6tNKjzbDT>*g@ZQ(by$f_XeK(4N5TWhsf3@P&mBSD&~OY5 z^u0pz@0tCJ3wjwHm{yeRPeM~#fsHr=)36g==m%)=ZjRS?pgVsS4g4TlBS)|p|AIb$ z38}}BUQGT?c`_azp7|DJ(jc@w?rOX? zr{9l1rg{d>#sz5c-G>(OgJ^MWL+AY^x`AV8hCV>*I$S~nnOH^sJ^T8qWKrFXR`nxj z09(;W_s8qM!#VViqdOW@oh-gg^k|CEov+4P{4N^M3pg78h>klIub-_Z|L!P-DC#f+ z`OJswa5&zE4(vp${YRLEyU{8>gro37w0JK@(m7WBEB@JUSEO5=-f zIr%ceI`l(yEw;Gu=*FF3to@D|I5(8zKIT4ixcn>EWo{JX5PSccoIvoVP0~++tGmA(Ud1J z3%8*2@4@A)AAUjO9vn&qnxZaj#mBJ$KgCH{JwG|Y*U=rdqcw3aTCAIqWQ3h)U~eNa zg?Diz=JRzc#!4KIOEKYt?KGU|o_J#un!;Xmp_kBs2jca2w@! zz!G$xRp|VyW4{v(_`FQdgbl5{xX7|g}I*sqD!VI$WU zqOa{HoQTh$>l{Hd@d-LlzsBa|1L=%9z=bmWEuKXu*wqxmH}C)!Va~$j+0H|LLj!-T znT-qkHV*$&de5ynReitCSvjQd_TsM8o~DxSp;hHms>-KU6-=8xYue1d4@%lnQmZPa e^eryEIJjr&jAeZ%W}MIHD{Q=w+H-UB(*FUb&XVf@ delta 4546 zcmajh3vg7`9mnw#69{>egoN<)5(tKvgpfCp@JJv+%Bx_?K;!6=+-!E5?8eFhA)j;3 zp2z?E&p8WEJs#EjWK?7@E#_&%pTF^UGJns-s&?bgwiIKMs6LLPa5rY-a~Oxm-1d{0 zPW>FF;*eYaJ7!W(9%~FgCWl|iSdNx45wnDX2DD%TeiJqER@A`luKSQ5bCh4>@dRe! zZ!rwT(mypey&v7Cq)9GfMg$isLDxftu1sicRZpKJFg)J1c(`|S+9zbOzj{JWG zQ&6e?I%>yZRDchm0y~OTcnr1Bm&lKa2Ro;!RkCwYX$F`PT=J(h!4tun_m6 zCVJPcUqA&EPZY#v#=6c#ji2Yb8aZaujLKvea{tVCu^11aHhckfXFkay|LSms23@}B z3C;&8SU`O;YCt_|;s&?wMV)OB8EST;Ht;g$V;^!F<`Yx~uA`13j`Pt5(opl}Mkv%! zC_(L{3zgz-RD`=w0q%D_g1XhmQT>Ne{k}wGZnS5nQpxpxv!=Q)jzU= zf+D>G)zOCvpcDBqTluA<_#SHFAEGYXE2teEM~yp$y8Rb$I!@%vL;=i4^{Yb#yb3$8 z39I$~&r#3pG5%<4tLy$*90)U^kYb#{Ucz;4e}A z&bsvrBX!RIcN7%iC1g%>4K;BlZ%Ailq3Y$Ri5B7_T#g%XJF*A!d(DL3;0aV9yHJ;HFY4@HMh!gXdJ&b0FK|6ZbJexLov8L5sH576 zI@-OcOZqBmozu7i-^WNNg`dp`j7LqB zhYEBy^0ZC4TVIX3BkQmVn@~shEb7_4fq8fmmBG&<6m%xBw>SZ$;!f%nuBT9!(93oj z@jg^w?;{_XtEj-I&T;}d&Kpn;MTb<~tOW!Xv1Z zoJM_745D^=898Q?%(l*B36^7gp|j8;jHSK;bu2M_u;wIGXj% zMGDHm5Gvx!Sclh9ccX@@%qf|*$fnI^Wu&9n z`DeTn6<9wi6N4C8NZ|?vrLeTbN$ot;LLt;b_hB;bK@EHnHE}<#z~iWAHLlcYFF=}1 zF)Gz9cpKh>qwo;wQumgUe_gIOX&8qeqjvBaDn;pK&MnVF1+oTp_CZX+gP4eYr~r>v^{5@% zxBxqle?H8QQ30MpZR|rFkDp>DCRRF^dU}LHIt@!v&!*9}6}7W4DxfWH`=f6CY1Ftq zs5@{NGw?N3Kqpa|_%&+bAsma^l{S!ySs0l_VdU&lshNkmbgPh;W;Ua4_W{?#sD7{G zPCSA7?zgL)4SXNLVArielZmZQF4 zo<~i17PX@RRLXyYx;$4=3nVRc{sWSUo2lP}%FrLN5wBq_HY{>p(Js{Ze$<8rFrpNG zL_xRpuSm8{RE=|H)ksoIE$X>!!5r+tsn~})+X2)(gKqmJ)TK;jbuE;E8aD;iUhB5k z*OLEw8rIOD9qmCav>&-w<~1zB%cwgseX%n^F>1lNZoMA0fv;jddQknh;}qP3>i-7n z?BBs?{Ah8+neby8be6-Y2xFHxCL>KI1NDwKU^WI&3++G!{8QApciqniu#ft6{0Y8N z=Zp{CZp>ZOAHf+oG>bwmg`}m-E(>PgS-Nh&EQsw|jOVa+M6Dy!`6&25f~E-swYJ2CHC zeA-H%-Faj0wzi&Hw%%Ih_u6gEKCkU=zcc6w`|M2~Pq5iZg0E~iF`~6RR=XW03!Zi* z!SAEuwYviTX4`M&2K?cTLHipvwf{`W{~4Lj96x^{*wRcA0zoD=fuPUp^V@BB=#?jKFVOa}k} diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 16062b8a971..879b2bd6557 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -14,14 +14,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi , 2021\n" "Language-Team: Dutch (http://app.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -44,104 +44,104 @@ msgstr "Bron- en doelmap kunnen niet identiek zijn" msgid "Running Sphinx v%s" msgstr "Sphinx v%s start op" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebouwd met deze versie." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "aanmaken doelmap" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callable). Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "klaar" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,70 +162,75 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "configuratiemap bevat geen conf.py bestand (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "kan dictionary-instelling %r niet overschrijven in configuratie, wordt genegeerd (gebruik %r om individuele elementen te overschrijven)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "kan instelling %r niet overschrijven met zo'n waarde van een niet-ondersteund type; wordt genegeerd" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Ongeldige configuratiewaarde: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,291 +238,328 @@ msgid "" "%s" msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Gebeurtenis %r bestaat reeds" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Onbekende gebeurtenisnaam: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Dit project vereist extensie %s met versie %s of hoger, en kan daarom niet met de geladen versie (%s) worden gebouwd" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Bouwerklasse %s heeft geen \"name\"-attribuut" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Bouwer %r bestaat reeds (in module %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Bouwernaam %s is niet geregistreerd of beschikbaar via entrypoint" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Bouwernaam %s is niet geregistreerd" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domein %s was reeds geregistreerd" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domein %s nog niet geregistreerd" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser voor %r is reeds geregistreerd" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Broncode-parser voor %s is niet geregistreerd" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "extensie %r is reeds in Sphinx ingevoegd sinds Sphinx-versie %s; deze extensie wordt genegeerd." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Oorspronkelijke exceptie:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Kon extensie %s niet importeren" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extensie %r heeft geen setup() functie; weet u zeker dat het een Sphinx-extensiemodule is?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Dit project gebruikt extensie %s, maar die extensie heeft Sphinx-versie v%s of hoger nodig; het project kan daarom niet worden gebouwd met deze versie." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "de setup() functie van extensie %r retourneerde een niet-ondersteund object; dit moet None of een metadata dictionary zijn" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "thema %r heeft geen \"theme\" instelling" +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "instelling %s.%s komt niet voor in de doorzochte thema configuraties" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "thema %r heeft geen \"inherit\" instelling" +msgid "unsupported theme option %r given" +msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "thema met naam %r niet gevonden, geërfd door %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "bestand %r in thema pad is geen geldige zipfile of bevat geen thema" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "instelling %s.%s komt niet voor in de doorzochte thema configuraties" +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "bestand %r in thema pad is geen geldige zipfile of bevat geen thema" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "thema met naam %r niet gevonden (ontbrekende theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -533,8 +575,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -583,7 +625,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -592,50 +634,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -644,36 +686,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -681,470 +723,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Moduleniveau" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Algemene index" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "volgende" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "vorige" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1159,15 +1201,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1226,8 +1268,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1259,7 +1301,9 @@ msgid "path to output directory" msgstr "pad naar doelmap" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1267,249 +1311,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Naam van het project" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Auteur(s)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1518,15 +1567,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Versie van het project" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Release van het project" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1536,21 +1585,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1558,91 +1607,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Bestandsnaam van het hoofddocument (zonder bestandsextensie)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Fout: hoofddocumentbestandsnaam %s is reeds aanwezig op het aangewezen pad." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Afgerond: een beginstructuur van mappen is aangemaakt." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1652,135 +1701,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "release van project" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "documenttaal" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "bestandsextensie van bronbestanden" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "bestandsnaam van hoofddocument" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "sjabloonmap voor sjabloonbestanden" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1831,47 +1880,47 @@ msgstr "\"lineno-match\" kan niet gebruikt worden met een disjuncte set \"lines\ msgid "Line spec %r: no lines pulled from include file %r" msgstr "Regels %r: geen regels gebruikt uit include-bestand %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Auteur van deze sectie: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Auteur van deze broncode:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Auteur: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1886,82 +1935,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parameters" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Returns" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Return type" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "member" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabele" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "functie" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "type" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nieuw in versie %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1973,346 +1950,423 @@ msgstr "Veranderd in versie %s" msgid "Deprecated since version %s" msgstr "Verouderd sinds versie %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Sjabloonparameters" - -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Werpt" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasse" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "concept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumenten" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Werpt" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Returns" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Return type" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "functie" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasse" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribuut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "module" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicaatlabel van formule %s, andere in %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variabelen" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directive)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Veroorzaakt" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directive" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rol" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parameters" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "member" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabele" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "type" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Sjabloonparameters" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "concept" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "exceptie" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (verouderd)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directive)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rol)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directive" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rol" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variabelen" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Veroorzaakt" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "omgevingsvariabele; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "woordenlijstterm" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammaticatoken" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "verwijzingslabel" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "omgevingsvariabele" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programmaoptie" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "document" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Module-index" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Zoekpagina" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "onderschrift ontbreekt voor link: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2329,35 +2383,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "bronmap is gewijzigd" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2381,39 +2435,39 @@ msgstr "" msgid "Symbols" msgstr "Symbolen" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2423,7 +2477,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2435,149 +2489,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "bestandsextensie (standaardwaarde: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s is geen map." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2601,24 +2655,24 @@ msgstr "'%s' is geen geldige pyversion optie" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2629,32 +2683,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz directive mag niet zowel inhoud als een bestandsnaam argument hebben" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Extern Graphviz bestand %r niet gevonden of het lezen is mislukt" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "\"graphviz\" directive zonder inhoud wordt genegeerd." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot commando %r kan niet worden uitgevoerd (vereist voor graphviz output), controleer de instelling graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2664,7 +2718,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2674,27 +2728,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format moet 'png' of 'svg' zijn, maar is %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graaf: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graaf]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2702,7 +2756,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2712,173 +2766,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[broncode]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Te doen" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Het <> bevindt zich in %s, regel %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "originele item" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documentatie]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modulebroncode" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Broncode voor %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Overzicht: module broncode" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Alle modules waarvoor de broncode beschikbaar is

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2886,112 +2945,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2999,25 +3058,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3091,99 +3150,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Sleutelwoordargumenten" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Verwijzingen" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Let op" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Pas op" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Gevaar" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Fout" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Belangrijk" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Notitie" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Zie ook" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Waarschuwing" @@ -3215,7 +3274,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Zoeken" @@ -3348,34 +3407,22 @@ msgstr "Volgend onderwerp" msgid "next chapter" msgstr "volgend hoofdstuk" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "zoeken" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Zoekresultaten" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Uw zoekopdracht leverde geen resultaten op. Zorg ervoor dat alle woorden juist zijn gespeld en dat u voldoende categorieën hebt geselecteerd." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Snel zoeken" @@ -3412,20 +3459,30 @@ msgstr "Veranderingen in de C-API" msgid "Other changes" msgstr "Andere veranderingen" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Zoekresultaten" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Uw zoekopdracht leverde geen resultaten op. Zorg ervoor dat alle woorden juist zijn gespeld en dat u voldoende categorieën hebt geselecteerd." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Bezig met zoeken" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Zoeken aan het voorbereiden..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", in" @@ -3446,30 +3503,30 @@ msgstr "Zijpaneel uitklappen" msgid "Contents" msgstr "Inhoudsopgave" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3481,13 +3538,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3514,90 +3571,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3620,27 +3677,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3657,13 +3714,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Voetnoten" @@ -3682,20 +3739,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[afbeelding: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[afbeelding]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "onderschrift niet binnen figuur." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index c7e03297de88e40851235e2c55c667e798f19c67..379c19fd2545955267ee90c6e769cc495b87a7d7 100644 GIT binary patch delta 5796 zcmYM&2~bwo8OHGg3MjJ4Dxd;_J0Q#F!X89iiiis;xPyBXEk;b-a*e4YV_F+ECawE6 zE=g@_85{T7IK-$mjn!(aNnB!LswOe6ZLO33AJ3hs!|*%je)pd9p7*@xevIp{dp-Kh z%lRU-=~~0TDlcPNV^RzC{{JsI(wIQHDd>Yan1_W}fDX39KVoydfz9wPw#P@P=VGIb z3Bv?ziQR4AG5u(8j~R_2I0u99b&SW=s0SKQu{EM5I){4hitByU^UYfsL({|{KPH1; z0a$_xpaNrYCMFrjn0guqxv&>AacZ=kXg&JT--TMi`plj})rOaC4!^}+0yo-0FbQ3WR8 z6zqlds4e&tY9Y5!0ez1i^l8KP#nZ^9p#estQaBw6)-1p{T#K4$KPvKL$dCD$U)qAN zQCsv3eKD9Q{V@`W)g-v);RO1X7>tM7l7FT4G#C2dr^qgt2xe8psi=v2p!Ti+RU5-l z6IP>EIu~{SUQ`D5V>Vtw1soc018t33XeMgB!g$9RZyLk7P=pnz4>n*^{2iv^e$+rW z-Trr|z}qmJQkv+Rg<41%YMi%RcO%I$M^J%ZMt;m)hu=y?5N9X@+oDo81XZMFp0tdAP zyHP9Mhnnyt_Qt=W0*^?tMb#h4x>@YH5tWIfsI5DP8s{1^pJN`=&`SL%RjoAKH3|91 zcu)gWqVB6f71;t*z^|cJv>KJ6b#8wrDv;lzj_D_;=dPm`{0+9y`F}=3ku~pNtF;ws zuRW-h=A$MWfXc)u?1~dn6aEtOaXo6H%Sckpx2V8ccC^n$qxQZXYC#_C!u+N`4W;@e z{3&igMIOjS6-f%RjiwBhkvSNT?_fC|z!D7XY@e${hA{I{&u_&%Jb^vYtBYM=7CIxj zP())Mu18-CWqD078k=Gp)H!d5I?q|CfQDmpd3k$Fr{iUem@&+oUdr$)&K}~oT1Mm`RFK?n&_HR^irKi~Y`k`uS2x^`x zhOnC~AUH7=)|QgIkfeskw;C&;#ThX8gO^ zz&m3U{an-n$}t!xqcU6P(BQ``;1~5`-bJnO9A@Da)Bq7_c7haChWen2sT6~8JSvdc zu0KcW+U!A1^cSqe3#h1z%d7CD0SyiE4z(a(E|*`CWI?nqN+F!lW;6* ztCpf_r5=@mok-Hm34FdKsLc9zw_BQyD&BmI)%mZYp#c`723(Iy`Bn_agP4P#psLuv zhqWbYpjN13mg8O@i#q?4P_Oq~8`Ku{MGZV2<8cxyqsuS^SE9CfGwS(9bX4URXy{yDM@{q$Bd{42 zDBGg8#Dkik50X_g05#yNsLbrZXnfD@H=>T+pHW}Oe@AUm7#-C}S~mIbLZgTa+M`*h zSLs@0k>&zw?*quciY*4;!6ersr~u1z`KH7dF&a;z0=h&eqRRDc45NPr z_1sld@x~VO7d93k^EqZ04YtJ`LPh=rebB3~&4eFnqA1iraj2Dy#tt|Wbqdy?YUv1; z;w{v8-TT>$6`)>VgODGyfM4l4{~yv&1|FjJ*sH(&J3k6l69Z76PeWy>4wce+Y>%7K z4;xVvp2bdh2~~`G?I{y6sOM8rTUCgybpA_eB;XXBhV|GIe?VVs@)P^VsXuDZ24QoY zivC!Os+~oyt5DDH#36V96`+5K{reykIanqGon|y@XlSMLP{p+t75NTS0LQQl8{O*> z1MLdBAzue32X$W!QlDn7+y4V9Q%A8iUO;}#5ByRl@=M9TCK|$qCE*NI z*d4=AsU6@t4mHtB*cBbr1n;4a)qc1CDXOS1V-`jY=FdDFf~uKysLUL9Xtbem34`$w zDkDB@oceJXgxxR%^WE!ZsEmzA)x^(Gfo??Y_3u&lA9DL=Fo6Df)B>+z96GmXXhOfC z_Jah}fSphe6r!qk5Gv4W_xcjoUtlQL*I^*;MQz<-Q~)>d1$=Kzp$hp205o5EVe&a9*?6*L4Rf_1+`w3$7E! z>-?9{&|b|%?bRMsKwshv{1%sB_%cz>Uflc)}s=Du^PEl}$Jh?y_x%G~;&oKYA7DQW z8fE((p(cC`bATz-R5{vAvNkV0CF)Bk(T!Wk{TRiQNIy1ddDgQMl;T>#+A=P$oJEM+SI%>-b zP%9mZB{&f?@qN_7zC@jl+t?AqCfehegDOU65se%gyHSzdL{0n@6ES|0O;sP%8*(DX z;&jwXmmw$1Y{91Z7&Y-zREoVP+i?<5*NZU~2cnP>euJus?~ve) z_Z0r3#mT7RIgLel1C@ymQ|(H#P(@vhD&{$;E!v2__yM-ZW6%2zE2g1|?qE0k5ud+u zr&;r{1J_GYdp{SIDF>B-w^7gULuH^5d*f+L!ocZv;tXs}KMPgFBQS*d%>)|S^IBA7 zComrWiK_@V|H%56-ZesGDj3Utt->as4qi!N?kd zP{c7baxo6I=VQ1?=t)WQq@;V|GcvO?dN%x~;GS0#Pik7j=EB^dHFwL38b%L(7}aom NTDWgR>)DRi{{WlOid_Hz delta 6330 zcmajj32;@_9mnw#$O3_oKuCfiz$KD}kRTyQFb0SO2(ly?P!`!<;AJ7p!z`o;%Y&9u zwLldb#0Jz1Rzy&0qcoH#DuP4nCEHW~hv1Q-*CvwNub>hqw@SlQ9|i25O?~7=j_Ob_L;>PCv>u z5Btz>z!A6!HSkMVgzsS#W^-{g7NP=wz;zq;Vt%uWhEld4$Ki|a4c}lg{Tr@H?9V{@ zGf}Dcp`JT{+M+fbjK^^dcA&Ok@Bq7zJXAmhI10V!cWC^Eh6Xr{O5q74cyks9;T64{0&q z@ErzX1o<3}QK*3?y8V1q;A>DR{h8~dsD&Irjq{CbH;#xh7KaKv3;D=Q_tQ`+s&FK( zMWya}RMob-pPxV#<$Lb+bEw+5jJm)7&352KRDTTW^ITL$D^OeebJW7NqZZ(ArlHie zU@Gp#zW5I6fiF-g`wlf==n%Ul8Q59fs0j;k0xm=?CG~(FG;i=X;_SGypr_7j8ct707L=In zb^a@8XvH#yiQ<Gr!|6l$LNI1l}cY3Q6DLKWdf_l7Pb?E@hg z%JnoAS`5Q2t~*gx{0!<8bfC5>>{eSVk*Ex$qcWP0om+y+Y!mj>`ERG8>OFy~ z<_oA|>o(dBn21VwD)z;RcstHRRdJK+PSiNNQOE4Kd%Xj7{=Y)iP9%jh5&L5(^P43! zv?t}LB3prza1G|+QB;b1@Kr~hngry?n^~xVR-;n;Dr%xPQAK$Pb>9!z50fb%&2tAj zI2rv)aS4qGT!Fkz&3e=Tdr$!#L}lhEYNC%Y3eUUhyH;BijhY}4*$p!cHQo|brZ(bD zxY_OR$#T#Cb6nuZ{E=VUvn$vK`;g}pOhE0~OdN;xNK(u}R83q&72kLG2nJ_cA43H? znnGEC(=iG6q5}KNSoi$@gA0nhH=_q(G%D3`sJ)zu%2Wj^usR%w_ak$fJvbCUMSUJN z-cIbG`lE497b+f=*%m5Z^Zm|GV>XQ!@g5AFV2j9uns5VZg`06CHlqT33ssC~P^tgi z?O(%a`n__k38)FP(ZOk`t*$`50sU)eD0L5D3~oaWun%?PYZ!~CQAKnSRTCi-?aKOM zJpCk0#i@7<>rt5*JIU5e1FHHrU?6TnYQ%3IwheO}Bl+Mu>cQ~IwwkA534I?bm48LH z)tpBKp2QIe!gN$7GBE`6P~#M!7V=9>#GR;9aTHT@{x8s&!G)M9c0eyGWj@p!ZY^?) zc?Nkon#-sR47t6U;A!@lWgxp`vQYQ0#qRhBhGGk_A1BHQoLJF#&Zvi?AE+Lap>ERHlxh&h;4##*0{hSKRB9NN*4Ni&2>>N8Pt;2KlG( z&6DnhzoSz1CB|W3K4%sOqcTy2nrJ-^!Ddw8ub}q!6zaTRLy}^`i9#!$kE#JLhT}?9 zKpP9le=izaxiB1CP^mhJdf+UE;}ldDk(ENA<^|syq*Q%bE>H-I zTHsEMzB;tcCUYF^_y>L^x=b$+4fBri`vU%Q~(8-gG*2uYQbBu9aW?kP#OCMHQ^1^ zcs=g6ujGN4M1KlCh$~RVdmRVp{Kwv7kKY(f;R6pUfK9j%TU~q4v8nf=-gr&uU>jZx&HhYOQ%Dn{c&I12ZmGV(qu z<=0V>4_suwta9*X`g1W7S7Q`Dg!+fe+bS+ZrLF>1 ze08XmZA1m|D5haM4#e}Q)6jhh-xnBxS-1{k@GvTn)2Nzy7eny}RG^`LkDb`TkzB|^ z1yqR&Te}^@@G;cF{QGHW zrAKfYp2Q4{TV_`_6O-xB!6aOVIrucH7(d6`G0JNLx(kQUFU6a2Gb&ThV-TLi{`d~E zP`|lMgQIA|ifyWvqEcFldeDa&Xp4LO_o!F(A=HXGun;eyiZ-{zPINb_ChkR&Vth!f z<`imcGD}rseqJy%w1N$oi?5(k6IfrGrfIHp(Yp97&pk7oT zppI+Ua%&tW(jSJMfBzTK(4Hl!L+~jdf5nH>c+UOcWt>9)6HLcpD{LkfqK?abZvPi6 zT2rDQ>lt3}lvOz^z11~kzA7i7X4|p&%xI^kZfU8r)K^tpR^qJmRMdI1_^9<-{O-Q9 zo!U}wrPrzQRC<>=3Dr)qudZsDlU!L=Q&Uz|Vm}?ON5>B}RlfgvcPdksdaKK78KJ0w zL0TWpyd`LQ=eUfx%;&ACN~(2AJuAIVynAcBQ{%0zWd>vC|Bw4RFaPVV*5lcG1Hv-W zMvO^I&vep9W!*Zab@jMQ0bNH9PjB_*WcLd9)q9`hKkG58OOMK3<#xgJeEp1dnOnHT;#-nkUduwW))=R~~!Fipt>YAb<(z=>j53^U5 Td49~2`Cm8L6t!NdSQqe5Rt-Re diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index b76fd9bff8d..303522723eb 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -13,14 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam C , 2023\n" "Language-Team: Polish (http://app.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -43,104 +43,104 @@ msgstr "Katalog źródłowy i katalog docelowy nie mogą być identyczne" msgid "Running Sphinx v%s" msgstr "Uruchamianie Sphinksa v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie może zostać zbudowany z tą wersją." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "tworzenie katalogu wyjścia" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "podczas ustawiania rozszerzenia %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego definicję tak, aby była wywoływalną funkcją. Jest to potrzebne w conf.py, aby zachowywało się jak rozszerzenie Sphinksa." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "gotowe" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "zakończony sukcesem" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "zakończony z problemami" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "build %s, %s ostrzeżenie (z ostrzeżeniami traktowanymi jako błędy)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, 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:695 +#: sphinx/application.py:689 #, 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:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, 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:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,70 +161,75 @@ 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:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nie można nadpisać słownikowego ustawienia konfiguracji %r, ignorowanie (użyj %r, by ustawić poszczególne elementy)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nie można nadpisać ustawienia konfiguracji %r nie wspieranym typem, ignorowanie" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Nie ma takiej wartości konfiguracyjnej: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Plik konfiguracyjny (albo jeden z modułów przez niego zaimportowanych) wywołał sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,291 +237,328 @@ msgid "" "%s" msgstr "W twoim piku konfiguracyjnym jest błąd programowalny: \n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Wartość konfiguracyjna `{name}` musi być jednym z {candidates}, a podany jest `{current}`." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Zdarzenie %r już obecne" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nieznana nazwa zdarzenia: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Ten projekt potrzebuje rozszerzenia %s co najmniej w wersji %s, dlatego nie może zostać zbudowany z załadowaną wersją (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa buildera %s nie ma atrybutu \"name\"" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r już istnieje (w module %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder o nazwie %s jest niezarejestrowany lub dostępny przez punkt wejścia" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Builder o nazwie %s jest niezarejestrowany" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domena %s jest już zarejestrowana" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nie została jeszcze zarejestrowana" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type jest już zarejestrowany" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type jest już zarejestrowany" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r jest już zarejestrowany" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser dla %r jest już zarejestrowany" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Parser źródeł dla %s jest nie zarejestrowany" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r już zarejestrowany" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "rozszerzenie %r zostało już włączone do Sphinx'a, począwszy od wersji %s; to rozszerzenie jest zignorowane." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Pierwotny wyjątek:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Nie można zaimportować rozszerzenia %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "rozszerzenie %r nie zawiera funkcji setup(); czy to na pewno moduł rozszerzenia Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Rozszerzenie %s używane przez ten projekt potrzebuje Sphinksa w wersji co najmniej %s; dlatego nie może zostać zbudowane z tą wersją." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "rozszerzenie %r zwróciło nie wspierany obiekt ze swojej funkcji setup(); powinno zwrócić None lub słownik metadanych" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "motyw %r nie ma ustawienia \"theme\"" +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "ustawienie %s.%s nie występuje w żadnej z przeszukiwanych konfiguracji motywów" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "motyw %r nie ma ustawienia \"inherit\"" +msgid "unsupported theme option %r given" +msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "nie znaleziono motywu o nazwie %r, z którego dziedziczy %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "plik %r na ścieżce motywu nie jest poprawnym plikiem zip lub nie zawiera motywu" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "ustawienie %s.%s nie występuje w żadnej z przeszukiwanych konfiguracji motywów" +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "plik %r na ścieżce motywu nie jest poprawnym plikiem zip lub nie zawiera motywu" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "nie znaleziono motywu o nazwie %r (brak theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -532,8 +574,8 @@ msgstr "" msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "pisanie wyjścia..." @@ -582,7 +624,7 @@ msgstr "%d plików źródłowych podano w wierszu poleceń" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -591,50 +633,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "znaleziono %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "nic nie znaleziono" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -643,36 +685,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "kopiowanie obrazków..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -680,470 +722,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "nieznany mimetype dla %s, ignoruję" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "pisanie pliku %s..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "brak zmian w wersji %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Wbudowane" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Poziom modułu" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "kopiowanie plików źródłowych..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Plik ePub znajduje się w %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "wczytywanie szablonów... " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "zepsuty odnośnik: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Strona HTML jest w %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Pliki Texinfo znajdują się w %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "nie znaleziono wartości konfiguracyjnej \"texinfo_documents\"; żadne dokumenty nie zostaną zapisane" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format 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:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (w " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "błąd zapisu pliku %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Pliki XML znajdują się w %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Pliki pseudo-XML są w %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Strony HTML są w %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "dalej" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, 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:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Pliki LaTeX znajdują się w %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 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:158 +#: sphinx/builders/latex/__init__.py:160 #, 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:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Wydanie" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1158,15 +1200,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1225,8 +1267,8 @@ msgstr "Raport o błędzie można zgłosić pod adresem ." msgstr "" @@ -1258,7 +1300,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1266,249 +1310,254 @@ msgid "general options" msgstr "ogólne opcje" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" +msgstr "" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "zapisz wszystkie pliki (domyślnie: zapisz tylko nowe i zmienione pliki)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "zastąp ustawienie w pliku konfiguracyjnym" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "przekaż wartość do szablonów HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:182 +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "zwiększ szczegółowość (może być powtórzone)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "zapisz ostrzeżenia (i błędy) do podanego pliku" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "zamień ostrzeżenia na błędy" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "Argument opcji -D musi mieć postać nazwa=wartość" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "Argument opcji -A musi mieć postać nazwa=wartość" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "warunkowe włączenie treści na podstawie wartości konfiguracyjnych" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Wprowadź poprawną nazwę ścieżki." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Wprowadź \"y\" lub \"n\"." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Podaj rozszerzenie pliku, na przykład '.rst' lub '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Witamy w narzędziu quickstart Sphinksa %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Ścieżka root dla dokumentacji" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Błąd: znaleziono istniejący conf.py na wskazanej ścieżce root." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart nie nadpisze istniejących projektów Sphinx." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Wprowadź, prosimy, nową ścieżkę root (lub tylko Enter, aby wyjść)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Rozdziel katalogi source i build (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Prefiks nazw dla katalogów templates i static" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Nazwa projektu" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Nazwisko autora" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1517,15 +1566,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Wersja projektu" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Wydanie projektu" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1535,21 +1584,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Język projektu" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Sufiks pliku źródłowego" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1557,91 +1606,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart nie nadpisze istniejącego pliku." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Wskaż, które z następujących rozszerzeń Sphinx powinny być włączone:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Stworzyć Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Tworzenie pliku %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Plik %s już istnieje, pomijam." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Zakończono: Utworzono początkową strukturę katalogów." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1651,135 +1700,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "tryb cichy" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Podstawowe opcje projektu" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "nazwa projektu" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "nazwiska autorów" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "wersja projektu" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "język dokumentu" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "rozszerzenie pliku źródłowego" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "nazwa głównego dokumentu" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Opcje rozszerzeń" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "włącz rozszerzenie %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "utwórz plik makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "nie twórz pliku makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "twórz plik wsadowy" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "nie twórz pliku wsadowego" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1830,47 +1879,47 @@ msgstr "Nie można użyć „lineno-match” z rozłącznym zbiorem „lines”" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specyfikacja linii %r: nie wyciągnięto żadnych linii z pliku include %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor rozdziału: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor modułu: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor kodu: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1885,82 +1934,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametry" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Zwraca" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Typ zwracany" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "pole" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "zmienna" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcja" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "unia" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "typ" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nowe w wersji %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1972,346 +1949,423 @@ msgstr "Zmienione w wersji %s" msgid "Deprecated since version %s" msgstr "Niezalecane od wersji %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 -#, python-format -msgid "Citation [%s] is not referenced." -msgstr "Cytat [%s] nie ma odniesienia." - -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parametry szablonu" - -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Wyrzuca" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasa" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "koncepcja" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" +msgid "Citation [%s] is not referenced." +msgstr "Cytat [%s] nie ma odniesienia." -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasa)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Wyrzuca" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Zwraca" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Typ zwracany" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcja" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasa" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atrybut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "moduł" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Zmienne" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (dyrektywa)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Wyrzuca" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rola)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "dyrektywa" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rola" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametry" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "pole" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "zmienna" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "unia" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "typ" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parametry szablonu" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "koncepcja" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "wyjątek" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (niezalecane)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (dyrektywa)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rola)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "dyrektywa" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rola" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Zmienne" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Wyrzuca" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2328,35 +2382,35 @@ msgstr "konfiguracja zmieniona" msgid "extensions changed" msgstr "rozszerzenie zmienione" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "katalog źródłowy został zmieniony" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2380,39 +2434,39 @@ msgstr "" msgid "Symbols" msgstr "Symbole" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,7 +2476,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2434,149 +2488,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "maksymalna głębokość submodułów wyświetlanych w spisie treści (domyślnie: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "nadpisz istniejące pliki" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "wykonaj skrypt bez tworzenia plików" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "nie twórz pliku spisu treści" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "rozszerzenie pliku (domyślnie: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s nie jest katalogiem." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "nieprawidłowe wyrażenie regularne %r w %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "nieprawidłowe wyrażenie regularne %r w coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "moduł %s nie mógł zostać zaimportowany: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2600,24 +2654,24 @@ msgstr "'%s' nie jest prawidłową opcją pyversion." msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2628,32 +2682,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "dyrektywa Graphviz nie może mieć jednocześnie argumentów content i filename" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Nie znaleziono zewnętrznego pliku Graphviz %r lub jego odczyt się nie powiódł" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorujemy dyrektywę „graphviz” bez treści." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "komenda dot %r nie może zostać uruchomiona (potrzebna do wyjścia graphviz), sprawdź ustawienia graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2663,7 +2717,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2673,27 +2727,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format musi mieć wartość „png” lub „svg” a ma %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[wykres: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[wykres]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2701,7 +2755,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2711,173 +2765,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[źródło]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> znajduje się w pliku %s, w linii %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "oryginalny wpis" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumentacja]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Kod modułu" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

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

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Przeglądanie: kod modułu" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2885,112 +2944,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2998,25 +3057,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3090,99 +3149,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumenty Nazwane" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Przykład" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Przykłady" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Uwagi" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Pozostałe parametry" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Uwaga" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Ostrzeżenie" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Niebezpieczeństwo" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Błąd" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Podpowiedź" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Ważne" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Informacja" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Zobacz także" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Wskazówka" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Ostrzeżenie" @@ -3214,7 +3273,7 @@ msgid "Table of Contents" msgstr "Spis treści" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Szukaj" @@ -3347,34 +3406,22 @@ msgstr "Następny temat" msgid "next chapter" msgstr "następny rozdział" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Aby umożliwić wyszukiwanie, proszę włączyć JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "szukaj" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Wyniki wyszukiwania" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Twoje wyszukiwanie nie dało żadnych wyników. Upewnij się, że wszystkie słowa są wpisane prawidłowo i że wybrałeś dostateczną ilość kategorii." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Szybkie wyszukiwanie" @@ -3411,20 +3458,30 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Wyniki wyszukiwania" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Twoje wyszukiwanie nie dało żadnych wyników. Upewnij się, że wszystkie słowa są wpisane prawidłowo i że wybrałeś dostateczną ilość kategorii." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Wyszukiwanie" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Inicjalizacja wyszukiwania..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", w " @@ -3445,30 +3502,30 @@ msgstr "Rozwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3480,13 +3537,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,90 +3570,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Nieznany format obrazka: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "błąd odczytu: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "błąd zapisu: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3619,27 +3676,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3656,13 +3713,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Przypisy" @@ -3681,20 +3738,20 @@ msgstr "%s" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[obraz: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[obraz]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 7d97b6882d3dd6ad6a9604bd51b727878288a040..9e04a6c083ea1d3718d1eb5f20b2c7f54e58da21 100644 GIT binary patch delta 30 lcmZ3$vVdhmGp~uRfr+l6iGq=_m67?z3EhmWCVB>33;=%K2UY+8 delta 30 lcmZ3$vVdhmGq16(frYN2xq_jIm8r$X3EhmWMtX)^3;=&|2VVdH diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 0bf07f08e39..01d79c297c9 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://app.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: pt\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index c164f9ab3ebaacd164ed35a4b39944899cda079a..a200764819231f0a783fe3a8c195ca594d54482e 100644 GIT binary patch delta 16208 zcma*t33wD$`tR}TkcBPm1i}(32_X=Y0AUXxyMXMQ3Id_i>5#^x8@dyAZ4g&nKzlTb zfZ~RzsMuE``bSY*Mp2v@QABZLaTpav(V1aU@AucIf~fc2=gu?Fe9oz^I?H?BbE?8K z|Nd|M>e~{+pEirX)6#$HSXMh|*E&`^|3B@zTh{e1%W98n<1Fi;9+q{2UwiektdU&L z=xtd+>ScW_s~kVZWE|bsvJ&u8%)wcB8{U9}Fr}YmQ4CwtD2(R9EjSq8#|&)Q-?Hjq zKdg(xFbl_`2D%VC;B7b-pTu-LgX*|lp=CA43~Y*hunCSvwL1eF(7)xOpc@02f~!$C zuE$3BINJC;s-cgu0iHlLblUm7&H&4rO1&ehoh3LF*E;pTJ03^1|0}klf2+wr%W93C zu^|pc4QK*(#9~wkZ@{+rjB|Y-?xcPSd*U|Ys)2ohNq7P^pr23?8FP_kv3k}-$5j|^ z&xI(3H2gb`!jsqv`>`I)a1yfomIpO}zo3@vX{^T6Sd6z1u`DKK{fHf~JJWB8lTZ^X zMbg7shBj^=O8gbVe{ew_LWTTG)SCZ5Bg|Sg!#312Q8T*;)zKW(z~|uv zT!`vmx8s+n2sa!V%XTXVl^eyFflI>_rcl^`O0MrP5nUHsR(-6C3VCzKZm5pNqMloi zbMXW=#tE!nC!B)`cpWkZ>t-B{e?#q-R4U53u$Mv-g{!eHUXN^PYb|QcUPCR(LDT?` zqe6KG$t$bp7}McGRC3*o>hLXO6|BaWnB19y`P5gVI(`Q8wEy=~=*orD*b}oDUN+7^ zg=iJ(`a@3rLuAKUXE77|j58CMiRsjfQNLe{TB?`O#?P=GTI0>{^)W^Je{1;>Ebz5hnpsvnZAhX@Pt$U4{Av|O)@!`E9u`F zMnNIF9M$kf{0g^YL)2@=!kjLdthfQLN$D&W5l_>343t;4OB9n#wOV8GP5L^IFov3 zRLEDOlKdvj#oIB3C42EQ;;$LJf4OPkD@>+-7Bzr+#IG(EU`rf;8qj3aHk*aY^3~|W z*HIDePVZyTgS~JYDk6s+<5;&=)HA|Pp%9mHVG1_Kx3Lj^jE>vV+MLl;AHKAiT8h^yL+W&**m~Aox+0vE=HGrp319~1cz`dA) z`>`v2jcT}6k!4+pnRpSdMGa&hDgs|%9&4R2*CcIEx0%>TY@z)>o`O0kMrHMts8C&n zET?rlvTWAZs17bJHs`=~*pvFx*bR?jXKdjy`+pEBnafcFUXNM$I%eWGIGO&fCM70G zig6P4YFvQFu>;QVn*F;JGpOH-9q~o9@d)x?E56hWbUtzxS+5~G(P}ZzMAnB{)SpGQ z`!R-Zpm3G~`DLvxGb8&9v#Hl1r8Uy7sBE5yx_%F)R+pYJRsuBYxn=3xDT z>^RHAIxWH%FcAyNiGLjm{mae19fUUZVYnYXs1Wz7Fl%3qB#pHi6^Z*$9lwGD@eFFo z`f}>j!`m?l@5Kas5OZ-WDz`rH6Mtp*Ke?b0{fuv7e84oc57$ud%zE_3D5`;fp$3w& z(3uG~pxz(V;Yg=G-l@+(<(L~M;C#FpcZMnC>4Bg*I6|m~9zkuNXRtlKfz9w3YUKaL z{#Y+$K1_zAW;_QQVj0fGD%5~KzyhpONmQ{9YC_@l6gU&CzhN)TtBSoLtzuL*KaHdC zAhy7C7EmGYgDugI{qR~$!Ck0<>_;Wrr>F_UFE&e?fjY2;8^hLA3YxJ8wT%MU3GYK? z`Rka9U!xjISmJz&p|bcQ9Ex*L+w^`^M9*Rxc3EovUKovZh@gdhg}tgj<09sqaKZ@DyqZ2COjpu@U`S zn<*&tPoqM34BO#3r=EJ1d98LwHBgDExCM3J%h(=2#nyNZ8)3_jR4#4G@k2RQvU!s;OA$+|FSsLnw{-|6i!>+i|slSOD=r2w^`v$%jsn0?+ z_$+4Oe$-l@!M51wMsr^dUP65}YM}d2_lMu3P@lqSRH)-`G9ybx4WPhr4r;B}U*1@|5BK4COj^UCgVRwV-iu1QPf$yE5)(1)=Ger;Ru%=V=@1->mt%cgkDA%TsK~sE zgYguO!JfC6`>#SJ-Akx7{s@&D4Q@5tE(0e}pO1BMCu%^iU}Nq7_bI4@W6lpPZZk`e zjmcb}g}FE%dt$Y7eXn!!*i$^w!YnT)Dyc>Ux?jtBVLO89JB5)OR)l{aQ!Xpi0vchpc{tDkepjKd>eD{AjXd7YV$oX5EbGgROD_%4fr9{ zKwojLe});<&sG!v1PW<)nUf~zLTo|(5$uF7p!V}&jAijX#w=8Wxu_XV#L>9W z`Tcp!r2aA{;V~S6C&CnZQz%$(E|j6Ne;aC_K8Kp|F6@DCp(1e(hvBe$O_pDW+RyJ` zDxN}hn7qN*1C?Xbu`OPMO3v^m3JU$}*b09{jjZ8DGn2`v0fkTvUX2Rz15SM}HlqHW zbNv@=O+9;)nZOY2M|~vPcr|K5_aPArTTf7E!-aQI4}OITd7b-AmbS*a)N`>3_D0S0 zV$}95M-5;ZYKAwVI@p04=pIzWzHzP>+;4JcFxJ)npHD%d4Pjq=7!{&VP%}S`%`kqm z*$u6*IrTiJJ`@{MzYKNXJXEeMLq&8mYAJW3a_dFZ1W(~K`nT#nU}iKMl~k+IgKJQ0 z`7NgFz6Z_kIoN=D57ZhC!b0?-jrZdad>NH&aSxg7ua6pFHfn%{7}hp&I~Q)j%cw{3 zB5d%miO40WP+x-@;5w{_)u@nfMzymKb&j0I_L%dCnb>Gl$9}BFRgS4!h`&O=eT!Lw zBiNF9%SX*eX;;)z+=!a#L#Tt}ZJdMu#R9x+tNAorgW63mqptr4(=g{T6Ui|cPu+vM zuk116ueIF7g--YkX5vAo{xjxK@A$YG$V5z_ekE!k3sJjgBWB@V)PTQ7Em`st#%`#I zO?K+@FopU}VG4CA+>h#bD-OhWoa^<;bk7GC7j^vT`1!}Etc;0-; ze2HVJ4}QV?%gD``LH%E-NH+W*ldLVVEA>q5h!ascREZOC1LkP|e@#Ihr|dHOvK{K6 z>EYCeVLj@XVFPrda;5^chO4kC-i^ul7-~Szp(6D$HpFkSKAuJGlEfGJQqunKOF?V7 z4M*YIn2If4GE0(=>fjQmJ_{B4C8!S9p$?Qyn1@kR(td$T%7(km?kd2O)Jsq~GyP@a zuNmD&K}oV6%kTkIL>jze4wj~l<4_IWfJ&lmI1Trs2GnJbnekA(i25|t#3FbJK7-HT z<j|UnTxSD0F@*xXq4hROP?QK9(@YMZ@-gD~x{rh{3i0hZtZT#ibv8q``JLPg>` z)XbCKG)dP9HSh_jT$+J1(G#YiY=6=5Tg;)J_LljE8-t2OHEM02#yR*YYMTz)YmVfp zSeN=tY>OW3f?>QAx1u_<-saGPD^L>&ze6FH!co-G*z_Grx66xNs{fV}EfvR7N1-KhK;VB%2ZT?~2ip8i2Jcyav|BqA9gYTk3*5EzU zU~g_t{=qK_#^7zNWev0Zi?n{$Y z?Jhpjg#By!;sY=uWrGdYKv zaq>USKO(1NI`!*OOY0g*TvP=5p(ZvRHPG8|KHiI?wf__UWwLi7 zcIAgM9N^*|fJ(BzePzzh!Jo0xCkavkSF!gT6B-pBvTjjo1aB zMz!}5u0VYZghO~01trb*SccQSH~(<33v;M9`N1?i0Pmz;gbMvn*cGRoG6TLE^Qk|D zlkii_#cn^Efy~08)UU;X`1+5GyCH=-Kk=tEHo+_LZ7jup|K^VlyblvG<3DD*cENho z^Rcb&LyIMwhC?V$|F4PIU8ouFKn?T|>i4>*%{Cl!nz(tmu#OA$@kdO+Ur`+yvISDgAM z$kK(aHvDy<0rbJ%I0^^gRoDr4Vl({Q@f0?uo*3_n9oZ?U`xm0N)izYp9mWD|oZyOm zZVyA%LpTK=!6n)^rz!O3LNL)Z@C0U1{{mAnKFJmPh)ly_)JLJ#ehun;xE+~^^&l#w zFX0&cD~`ivbzQNey$DOFZ+Ge`^<35@`nSp`DD*pVBDSmVvfNmXBXJ*&#ug1+u{E8I z!>Lzcd)$fXcmUhsX`F>A4PCLfUkGjLTTti2Uom!&VOS3|bp^Ee+m_ugyv=mY}Bq9hB|Ooq8p#UUD&9FD|U3h zjXGx%!Y$3n8sJr2NW;On0lVQL)Cty*|GPpu7NFK{8Y)stQ8RrUb@U!XElrD7CZc0e zzc0Zn@EPofjar)lhDT9Qh(c)N&FIA^Z~`_8x!xNU;n}DG%tOwVuysF$ES6Ayg-zPO`O5 z{eN%(^`B8$+&{w=dp$2fos>c;SE7>YD^${T>|~Z?s$&4PD{e*`A3^P=H?RYqMMb7U9Ejhd zBGok~Y(hRU$AoM-YJ}@iS^Ye=$NktHe?aZq%&zACE~o}aqfWZ(P!rgVy8j@K!1}o+ zi6>$b^-EE|&k0k|+OI{OXxp6|e#S1;6Y@+Fc0(;uKU7CIp_24fY>ut+&3#=_CtxpB zWJcj!T!nha9CjSp%?u#?CMKwUZbT)~0n{2d>0t)m74xVs zMxBfgqn5A+HPg>g6KYyucEbRqy|6WofV z`czah72(CW8I`2RQSCJ9V{#x3b+Y!wCO8olnYoTZOrd}4S_+!cy{M4Bib}H2P}}er zDyiD^HJ@HRQ8T{-bu#Y2Rk#ZkiNXEMd2j_PqSv4Xwg$W5dQ>jGg<&<+w!b;~2BSi^ z7Sr)=RL9Sw4w&~)IdTRyOF)R#*s>h~*A=fZYWw(mtP-Dy;0GKQKEk4HuD zD%29)hg!-J!=K#g=MYMVTT`qVmz`jGfH>Lrvh+$>Rl)OWxz)LPEN zdiWeF>t8_~T<_yFJcTxn9$~hx5A|I50jF>Zb;OPsY2NRPP;0*mwJX-6UMg=o9!Etg z>0*=RT~RqQ9BrJBiongNZMhA#&G$GSL970#XdwTCes1*8|bn z<3Fl1)4RmypJ$gdhM>E=sJJ}fxl)a}Lv}`1D8mkVLsjLKren9?_6CEr?yjV>E4}_g z?##ERcq@ZT)d*t?dduBQxVs`y;*Ip0JSyzJQsb&DV{RUt>cTq*IE`uskH{?KZrChFW}JAE^|ir+t28SqpFz24}O$uGGgW2P>51*5M` z9iG^{BCzNWVGczTW*&(z%&08$R(SIlES;zLg^EIzOUu0(3V5X^Ur`mRw2QqgL9G9L zd$iAASr`jqn7cgLRk|GKw~HS_p_ zo~m+pkhLiDl2~rP#~W)gtOSWQsoN?80lUKOUux_3P-P$(`hB;~(;>Sw7^q-0x%T2R zpQr4%p_T{S%EnlW`S!RAY9ZSl^pY5VXfZn$pV)$X^_cC1)9LAa9HVa)ZBLHAP!SjB z@XYsE@NkuXfzNYgETKICf2nU?RWOz?_9AzAm3j|G zhlJ`Rb?~^$6^=@}47&XxO4>LJf`NJDbtpaBZ`u2=kKId&Q8r_zJhrADOu!hoqZ*^{zTecA$7ZEkw?&Y?JTvhhod7?UWVD zwW~s2yU-uV^Z84>OA2j`HsJT#fznv?qfM^KPs%JIf4ob)o~l^x*$dp2W#{!wMDBH^t~Nx@Tg1E=0>L2$ zN>R>=P-XPh+t0+g3ZpOmWuGguxwv_Q(m)ka(`bW{?RT|~+=pY7)a zo^0`!vjNyT>Cunwy2q8|?1RXQch88B z9N)1vW3cv|YH_0n?`^xhI{=CKJ zrs#KDro<)p%In@MuSYMtpl4x0-^hf=LatuXR~{SYs?#gKdo<~ZAq`w3qN8iBi`T2b zQ~N5|@ndce7Cuc|~~mJ^JZJ=-Fu-Z-8Sd#eyn zjty^xT~(p^&#&@xmItb0Zx?s;-M`L?ONc!a>Av?=i_CBIEY^^!i!g4!VgNcX;+hOMLSJ<~>k**=?J*(4H+s?T|7#m(eVFtTk&>-wDHvG;FAex&iSJ+(V4df?bMakX3S&Exgs&j0Y?SATWY zZp%l$SyOvG()+}M+H&-<6LXx0eUapoc0Ff7D+7_9Cp(&l^+Vgp;*-s4+gf|_4QGp9 z@%`1#7X9@5LvfKtKc&{*llN2K--@Zx)jyr9<2>{7>E@B@(^=3-?vu+XN7 zy`^|fxEJ|Cfl$8Xj4RUnOzo3JXHp_3&!o-0;2AdLp3RDVu@1V}%jo=kf@aTFg*YWT zFL0LxV-Yvs09|UE=XDscugD6`F0{{Iip)Qo*QC_Fj0Eq_g+OuW#GM(=QUL)r}5;)4(3JkI;b`YdTcAssr<(qg{T=lvh zu7;y(KOFe7=If!N*cUsCejD}w{eyuG9rV$Uj)*{H-PdiZ>veH8X!+Zt7koKXyOLbl zHE~Ikj%%NG_OywJ3JAW?Ey{s>A_odv^sXt#jS^&@fNT3%VDS zE%GfZ(ih12)5Gk9l7PNDYWBBu#X0YZnvYw#rpGtu1H`w47lVJ%p3QuH#0L9vuB%?_1u^KA#$syeR1ngyAziE-7L{avZ4T7%db z;PsPCS~Nzh@7L;+S+0!ggITVo>9t=b<`{K8NjR^x!pj&;dQC)P5)UK7c4RV5~x1F~jxFW1lUE!hVotMipxJE-cB{av|}em6+- zfnpL-ThR)6wMP!G-0<7ZI=phDUgjnA{@X<+>GpVaTvl)C?;7)`&zkD*`@80wtzR>@ J(3KMRzX5bnhU)+T delta 13691 zcmY+~34D!L{>Sm>Ng}Z%LM%ZnPmo9=Aqx`w7He&#wo=?A7tt)_CX}|Wr6@%^Ziz08 zE>pBM)!wNnZH+40DrTzMnxd_lYLzadO0}i`&o}2WGylF`eZ9{)&vVc6JHK=8rCqwV z#?_z0{AXjr)?57ZWr$@p$J|)e{`*f+2g_P+TUIeX%sW>)TGqEbejwAb2GCxX#lO^d zce1P^Y~R_kqHrVDz~?XpU&OWeG4{miT`Vixvi#Pw6b9398hc{`t*z0EweUf#iR&-{ zpFmA?KeocNcpKitcpREz1}?$|)XT6wF2{Pf5!LT@ti$+Lkb+*^hmG+B>cwxcF8+!R z*6wOLYL9iO_e6Cx1oeCjj=^$NKkr~){LHP#cQfrdsQyP{EaO|#C^W%)FcSZOn$Tu! zi?5(U_%X&|NO#lT5?`aYX-_feQ*g*!;=_|T?SZIA`ZkFSd2Wf zd^i|)qfUoC(B#-~R3xUO7UVCXz>&1(p^|O~YD@N`X81Q$D9<6=ZN-r&N~VdZfgVB@ zYyAzCD-9U61LmTV+J|Yl8r$O@RI;AOb~^vfhM3UwLp|`i^~aEew_e9Kcnu>kZm8Mg zHmK(VuoW&s2e)7?-0wa=f;x`jgh5-}0=3Zg7^3svn*!0c`r$NOjw$#R>cyC0mKBDH zm}T=p)C#8#Hv_Fj)iCSE06M8&1SM7>^BacXI+WsSm{3I3KmZ2T+lE2TSm4^phXfcrr^D&nAq< z=dlj%aoZ1J8ub&Hg!UNIaSGO_-r21WLOmai8F()$2XdEC`~M6DCDGrBqh|h3)C@182C$}>=e1A~ibED{bwuW7t;7`k z7iMAfRGwjfOhO-az$bAO9>Lkze3~NU=i7^dj?WI%9eo_NC702`SPz#H=AZ`Lj3e+m z-hqSjOoTRJ0`&{n3ZwHaYXx>hf?!plR^Fh%9QSN&!}!)z3d+W%?t`NkPyHwCiLs2H zjbl+;vIZZ=O5_zQb2>*@b)1XeqxO3G49g0|VhqDM=-^!Z5G&EIkQL1|d$ximC&>aSS| z@mI1XmY6HHJL^%_ z?1WozIG*%VNTSeYj`;~T3^k!gQK8?Cx>&xz9K41)Zs}!aB7-o2`t3Lk=V1%{1Y6=& zjK)SjV*+aBoiP#peJQl1FcX{N8dL{cQ7b-(%I43pFIwg16!gP1s+&*)9l_@K4K~Dx z3X{amQ4{Zl%8_}f$lZ?(7~fh&L3_Fxwc_Wn3!cU9*oc%Kg14jUPhdCv7zbm_JhMfU za1izNn2Bdx>)m56xc=CQ_R-iFS739U|IKd0UhL0<4^SO6o^K*D1huk!RAd%m6Wok- zu?iJ|L&%D(FEIwMV=P84FcE2s+Ul;TW1WZf7~k4LL3{KvrsICpdA*EH@fvo-`uCbG z>5D1UC!_Xo1u7~3j9qaz*2BxF35VWi&V4*;Yx<$KZan%m!(|i{l1-R_e?bj!9vfl( z`_1uchoh*cqb9l-HGx;KKAu9Y@FHqK4HufowRP=_O4cdp#RnD=|EDN?Lxc8aHQ~_8 z_oF&EgcI>2?2hS+%w1lDEvY|&+KN5c3{PMO{0`M$i^b+kX*8<75H-P|TR**+j@429 zC1z&ns68BqaX1Sn;Bp*_pP?q0vedla5o=Q)iw$uaYC;v*9@o0=L2c!EY=zbXX3HEu zg&gWBs0$$OgA(QR+HvicPGtzIBd*X8s#0^l=ZHW0i?o*+kUL??nx?71QwV zuD_!~p7x0OTpkXfz7iwxIHurf%*Kd6n6LNV=ue^{kAgz>5Nf7d-TFanP5le3fnn=R zveiZn*xGeGD*IPsB0hyWuJ2$th6RjuQ2oWA7S=gH{I&Pv-50iC8|qsz0*_!Wp1{u7 zxsVx{E-G3yTK$?cT_}X zqC))uDpIeYCiE$41x}@zNI%r)hojz`w24`R+T!5O`BX0d!jHbQ^_1=3(uK2Ap z6k=%zd(woYId-BRj~#IwHpJzq6+MAUs{NRc?_g6*-DI|8AnN%{tb?Vf`{Z8ihR>jb zXR(jY|L+u(Y<)JH^EntbLoYHz>mF1j{^-`VZKV?Gyy=(l_Cd6ZKGVc{)93Dcg^c0*Y@4b)O(~v)z$TY?_)O)&h z4{C)Eq9zo?8h9Laft^I1Ci^)v!H&-nf4w-ChIpLg8bBq{t8V=WHm3e9DjCDJnt`KG z17@JwCu8;2p-#~~s0F=?x;ekbt{Ah;Tu{Td5q~{+kcJ3+1=YbGOvIz8V|T?hYP(rk zB5H#DusKdZy;p&X+*(vW+fd29*YyOp2;mnJ25j=f|04T9!=@elPNQMqBQNt4 znGb&W3SS&JI%u-_Jyb|PLYz=`6g9`YvpZ4R@JHWuubS z--m+sW(2my1=tS%h$HYYD#VSe%)ot7$8iwqqM7X0i?J5Y2reLR2~ z_#`qRzx7WF3RU=SbMZ9A+SC&<9W$^3^H6*F2@b+*s8IKQ&1}g;)BqK3eFer+e+D(+ zUev_j#WXyNDLVg=drUTFqi(pn@CSStb8yjKv!d5fIdTxS1xK+Po^Y-Ey6I;KDtAip z4%~p6$VJpbL*Fp>Mq_NL^FNltP%KBb+uDadEPGQo6h9hKThnfz3FR>CLOmao@Nrbc z4xqN+7;2@TpeFn+=HgFS6TAJ@e6BzGyV6iZApxJm+wpzWi!Jw?EN_R3L{A)rbFn8L zMh#HoEi`uKcYQob{D_(|*z(&*-?!gn{%{$I%I+Dim6$^P zFb>Dd*aZ8$ZT4~^PNBX68{v5j$KOy32|Z|XBodRUC*e38eb8?P+)l$B8o~~lmCQxm z*=sNi_uxR>hhs4Ou=yE%Cn~$2#R%Ms8t?%2!uL_n>%3zk&>9tyZkUV1{S*|+b*Mf4 z8|v6aylX-|4zsCmMJ4BF*bM8xXRhQ_>_j~e75Yj{!4q!%CT3FacEluQF%F{sDE2}B zX$lb(TD)(r)C5#VLogYap*nmCb>9DhTG>TxjVVXX@fwbr*dz?Wxi}o>aHJ-u%T#V}YFzSORupXYrEWC#OvHi#9_>`ia zSE7=18{UaKum;xr#3W-~>`grulZnuHY)F0aDdMkzHc)7Q+fhmO21erd=-_XtiM9BL z*~4U1=%?Wd+=@!#j-Q(QqZqqU--pVPU$7arIBmwsaUFJ={a?<5X*B5EeuY}m4a~#3 zXUvw&L4|BBM&lN2j62=-!>EOv!W_JWZ7|`i8F&aPCkjxxREFWW;4Jai2N%<8c?(#7}TCe&MH3n?kS8 z%|Js?p`MJ*aVB=gWvB`6#aZ|c4#uo6%uRS7wx_-xyW9LaMn&w#Idii{|I=K_O|cg3 zy-*YM52m1%OvVXV=6VF%QE&S%Gl5~)iTV;$wpU>$p254Y-k0VFO9{52ehCxRe%|zx zjk-^!qCUS8@6-8ziGq)Y)UV8*Z^4<=L%%kE3@<_*!+ofZzrpob_ks!Gv#6EZ-MF%*6j5W45R)5 zDwH2%9Dacop}&EBDBk?e{9RA)@6C#*Vtd+`p`O2t{TSc6Od$_D|6p=qBi5k)42I)& z?20=v7QaDlS;)W5^CrmEV6{T^a}_t^#LMQp<7Z5vp8lix`kjPY@B;MLrLclRZQS5K zcnWJ$|1(Bo6^_Bf_&CO0G4);8gL>_sOh^Y|6!n#;<5`Ig{uwp#cg;sdssg*?GSq3=kEwVS zbz0i|W|DLqs=mTcVKjw3cn?P1Fnhfm)xlq}HU5N6vB^#I+bt9OQJ;j$k+!vC!&(E2)p3|48vE^!9AFz^ZzLYg)BPUuHLKmsN|V|3gIfu z#sDfgkDzX_)2<;AX22xuN_%&V#R|854fdkG1(WeJ)BtL zyRZ>naO=OL_BgYa=^z&s>Zz!UWifhi2fl&Pwe9L}!=tGCB)pE9Xe8cGy%qXiEvWN%#hi#ikAH z>SJ4qipV-t62Ff+RbQe$*V*6DB-w-5n1(-~vVR*Y#Jf>R_Z2FnKch}TMkBlWMjVLR z!Us_Ay^T5rCtX|dzfmYcg{ZA~2>W0aYRmjTyA27kcJ<9Q9hI$5qrNo0z(kB}Qhi>n zEL4QXV_%$$Ivu-F6Z`@1!sMoQ^;Tq8!$rW{|E)`$q6jP3#gEd zi8B#cgW8JMT|Yq`pDXBKbaT7#-LvVJxf8^_!&09%r@r5ffz%5Bq}0#I1QgfeMj7Ioz~V&-~hI!{R%2~ViWA@ zE$D~3*z(36Kc<1Lap!imCz3hi~&#Ow~{RMbZ$Q(sg+>u@CQLPajTqe;qW)PNbN{)Qqs;_O zmf1@$-pPyeQOEK_RFeLP9WkMkx%TT3 z*e*O*sGC!0ig}oZ_o4RidDJmFfg1QG>U?*|Hjx;G+SBo<99oS!CC5;o`yKTqm6Bsl z%{0_6rd6m5YAgEnrE`LU_UapKi$9`n!X{nKx85D7?4N=Ya1J{79_lz=MCCxEZpP`T zh*e>2ynx#KE2uBEsO~1RJ-XY2szW@928Cz=D$6&cl4KV;cm}odo2aYT>0!=$7uRt; zg3Z!DjS3Fw)iN}AZ{Lub!Dom3UL$y5#onk0xR>r4nA4%LR286SI4>@r_ks4W_$Asrx$t)g1KciLV`of z-wFxTeY#mMXWmS2nb(hl%m6?vVc>K8pl&RkDXh1Y5AsVFaP?aV7IDsp_@a%Y57 zUh3q}u1L!-ttcr^4usCj37c77TomX#uS;<2ykEkDM;5+k2NM^M2?@TibWdpT%@u7U zg3%98tr2|u(E~P%E5#}00TFFEkS=7}{u)bM z<=q?~lW;sfXUxd4qx%n_i{xO)A1{Z5mKJ#f_b*Lp?6b-$N}N#zc@CT4y(iy0yPWL^ zPJVhyc$3!dj9V*e<%K0PEVHn{+OAGu|MrH#&$s;&8skhaB;+3ETU3-vFGceMH(yK+ z^xjcnj}N}RV{}MVR$6*aT1K{$(WzVKoIsnMK07N|xwD@gn%N;Ec>3i&b?ky*i#L{q z1?#-EAvCb(;JNVP*@Z=(g22;<(ry(`9?Gm~T1(3Ui!L;*H=>k<6|j$`ra72(xPF9r zdv4&iV_ye7$47|lN z%eCFXgYB=pW8doS`cJFeDXqFX+x?h*ZOW~Adapa-c@>341>V5g>uudPcVGWc5H4On z>^4^Yve5l_w_i_(1YX{s)UJA|WgVO$GfGO!JVeIlb<#W}Uzy`|4^BSKf%-RF-kMJ5 zo7uM}Tz0cjnCY={b%>qgRQGmZs|iRdL2*2D3w@;>EH?m^@u7AD9e@P)Q`BSKV$V=J zA^v|lC{Zs5wmTlOq{36=c2U_i+io$Qgefp5_rQ+1-XbTdREPFIbLI@6TlA#P@3}>r zSW(%5ryO#-u%yszJ!g5gr_AG&9N1IrEi2`j(|^=hUvlMrp>`{GI$J{RTiaQ=pINrj zSx>&TkP>dCA8mUamvi;Gw`sMDL z!wywWt7o_C==GHoZCxovg$p#5|Mpbu^%d(?@BiE@RnKMF<)O7_du9_CO|a6FW;d$* zKGBY-yt{$j!1h%(&9>tz1KIWxvolrAbL@)nN?$EIrlot;u*(+rr?=Rni?cd$s5q5# zYS|5|p6F#?53AhX-%jn~^J?Enja$dRv`h(7QOvS^&VL)d)fLBAK^V)ul?l1_5PN*( Q!d!cnJB4p^?ZzSh2ZX^#D*ylh diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index b9b37f1f39b..4943f0ef82a 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,20 +7,20 @@ # FIRST AUTHOR , 2008 # gilberto dos santos alves , 2015-2016 # Rafael Fontenelle , 2019 -# Rafael Fontenelle , 2019-2023 +# Rafael Fontenelle , 2019-2024 # Komiya Takeshi , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Rafael Fontenelle , 2019-2023\n" +"Last-Translator: Rafael Fontenelle , 2019-2024\n" "Language-Team: Portuguese (Brazil) (http://app.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: pt_BR\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -43,104 +43,104 @@ msgstr "Diretório de origem e o diretório de destino não podem ser idênticos msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilado com esta versão." +msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser construído com esta versão." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "criando o diretório de saída" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "enquanto definia a extensão %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocável do Python. Modifique sua definição para torná-la uma função que pode ser chamada. Isso é necessário para o conf.py se comportar como uma extensão do Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "feito" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" -msgstr "Nenhum compilador selecionado, usando padrão: html" +msgstr "Nenhum construtor selecionado, usando padrão: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." -msgstr "compilação %s, %s aviso. (com avisos tratados como erros)." +msgstr "construção %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." -msgstr "compilação %s, %s avisos (com avisos tratados como erros)." +msgstr "construção %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." -msgstr "compilação %s, %s aviso." +msgstr "construção %s, %s aviso." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." -msgstr "compilação %s, %s avisos." +msgstr "construção %s, %s avisos." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." -msgstr "compilação %s." +msgstr "construção %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, 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:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, 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:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,70 +161,75 @@ 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:1299 +#: sphinx/application.py:1293 #, 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:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "Valor de configuração inválido encontrado: 'language = None'. Atualize sua configuração para um código de idioma válido. Voltando para 'en' (inglês)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "não foi possível sobrescrever a configuração do dicionário %r ignorando (use %r para definir elementos individuais)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número inválido %r para valor de configuração %r, ignorando" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "não é possível sobrescrever a configuração %r com tipo sem suporte, ignorando" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuração desconhecido %r na sobrescrita, ignorando" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Valor de configuração inexistente: %s" +msgid "No such config value: %r" +msgstr "Valor de configuração inexistente: %r" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Valor da configuração %r já presente" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "não é possível fazer cache de valor de configuração não serializável com pickle: %r" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Há um erro de sintaxe em seu arquivo de configuração: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "O arquivo de configuração (ou um dos módulos que ele importa) chamou sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,308 +237,345 @@ msgid "" "%s" msgstr "Há um erro de programável em seu arquivo de configuração:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "Falha ao converter %r em um conjunto ou tupla" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "O valor da configuração “source_suffix” espera uma string, lista de strings ou dicionário. Mas “%r” é fornecido." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "O valor da configuração “{name}” deve ser um entre {candidates}, mas “{current}” é fornecido." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; esperava {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; o padrão é “{default.__name__}”." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r não encontrado, ignorado." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Desde v2.0, Sphinx usa \"index\" como root_doc por padrão. Adicione \"root_doc = 'contents'\" ao seu conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Evento %r já presente" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Nome de evento desconhecido: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "O manipulador %r para evento %r levantou uma exceção" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "A extensão %s é requerida pelas configurações needs_extensions, mas não está carregada." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." -msgstr "Este projeto precisa da extensão %s pelo menos na versão %s e, portanto, não pode ser compilado com a versão carregada (%s)." +msgstr "Este projeto precisa da extensão %s pelo menos na versão %s e, portanto, não pode ser construído com a versão carregada (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Nome de analisador léxico Pygments %r não é conhecido" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "" +msgstr "Lexar literal_block %r como \"%s\" resultou em um erro no token: %r. Tentando novamente no modo relaxado." -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "vários arquivos encontrados para o documento \"%s\": %r\nUse %r para a construção." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." -msgstr "" +msgstr "Ignorado documento ilegível %r." -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "Classe de compilador %s possui nenhum atributo “name”" +msgstr "Classe de construtor %s possui nenhum atributo “name”" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" -msgstr "Compilador %r já existe (no módulo %s)" +msgstr "Construtor %r já existe (no módulo %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "Nome do compilador %s não registrado ou disponível através do ponto de entrada" +msgstr "Nome do construtor %s não registrado ou disponível através do ponto de entrada" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" -msgstr "Nome do compilador %s não registrado" +msgstr "Nome do construtor %s não registrado" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domínio %s já registrado" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domínio %s ainda não registrado" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "A diretiva %r já está registrada para o domínio %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "O papel %r já está registrado para o domínio %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "O índice %r já está registrado para o domínio %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "O object_type %r já está registrado" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "O crossref_type %r já está registrado" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r já está registrado" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser para %r já está registrado" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Analisador de fonte para %s não registrado" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Tradutor para %r já existe" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs para add_node() deve ser uma tupla de função (visit, depart): %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r já registrado" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "renderizador matemático %s já está registrado" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "a extensão %r já foi mesclada com Sphinx desde a versão %s; esta extensão é ignorada." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Extensão original:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Não foi possível importar a extensão %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "a extensão %r possui nenhuma função setup(); é realmente um módulo de extensão do Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." -msgstr "A extensão %s usada por este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilada com esta versão." +msgstr "A extensão %s usada por este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser construída com esta versão." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "a extensão %r retornou um objeto não suportado de sua função setup(); deve retornar None ou um dicionário de metadados" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Propostas Estendidas Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "Número de PEP inválido %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "Número de RFC inválido %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "o tema %r não tem a configuração “theme”" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "o tema %r não tem a configuração “inherit”" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "nenhum tema chamado %r encontrado, herdado por %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "a configuração %s.%s ocorre em nenhuma das configurações de tema pesquisadas" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "sem suporte à opção de tema %r fornecida" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "o arquivo %r no caminho de tema não é um arquivo zip válido ou contém nenhum tema" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "nenhum tema chamado %r encontrado (faltando theme.toml?)" + +#: sphinx/theming.py:259 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "nenhum tema chamado %r encontrado (faltando theme.conf?)" +msgid "The %r theme has circular inheritance" +msgstr "O tema %r tem uma hierarquia circular" + +#: sphinx/theming.py:262 +#, python-format +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "O tema %r herda de %r, que não é um tema carregado. Temas carregados são: %s" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "O tema %r tem muitos ancestrais" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "nenhum arquivo de configuração de tema encontrado em %r" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "o tema %r não tem a tabela “theme”" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "A tabela \"[theme]\" do tema %r não é uma tabela" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "O tema %r deve definir a configuração \"theme.inherit\"." + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "A tabela \"[options]\" do tema %r não é uma tabela" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "A configuração \"theme.pygments_style\" deve ser uma tabela. Dica: \"%s\"" #: sphinx/builders/__init__.py:183 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "uma imagem adequada para o compilador %s não encontrada: %s (%s)" +msgstr "uma imagem adequada para o construtor %s não encontrada: %s (%s)" #: sphinx/builders/__init__.py:187 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "uma imagem adequada para o compilador %s não encontrada: %s" +msgstr "uma imagem adequada para o construtor %s não encontrada: %s" #: sphinx/builders/__init__.py:207 msgid "building [mo]: " -msgstr "compilando [mo]: " +msgstr "construindo [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "escrevendo saída… " @@ -582,59 +624,59 @@ msgstr "%d arquivos-fonte dados na linha de comando" msgid "targets for %d source files that are out of date" msgstr "alvos para %d arquivos fonte que estão desatualizados" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " -msgstr "compilando [%s]: " +msgstr "construindo [%s]: " #: sphinx/builders/__init__.py:316 msgid "looking for now-outdated files... " msgstr "procurando por arquivos agora desatualizados… " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d encontrado" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "nenhum encontrado" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "tornando um ambiente pickle" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "verificando consistência" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "nenhum alvo está desatualizado." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "atualizando ambiente: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s adicionado(s), %s alterado(s), %s removido(s)" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "lendo fontes… " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "docnames para escrever: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "preparando documentos" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "copiando ativos" @@ -643,36 +685,36 @@ msgstr "copiando ativos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "copiando imagens… " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format 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:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "não foi possível copiar arquivo de imagem %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "não foi possível escrever arquivo de imagem %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow não encontrado – copiando arquivos de imagem" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "escrevendo o arquivo mimetype..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "escrevendo o arquivo META-INF/container.xml..." @@ -680,470 +722,470 @@ msgstr "escrevendo o arquivo META-INF/container.xml..." msgid "writing content.opf file..." msgstr "escrevendo o arquivo content.opf..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "tipo mime desconhecido para %s, ignorando" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "escrevendo o arquivo toc.ncx..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "escrevendo arquivo %s…" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "O arquivo de visão geral está em %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "nenhuma alteração na versão %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "escrevendo arquivo de resumo…" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Nível do Módulo" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "copiando arquivos-fonte…" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "não foi possível ler %r para criação do changelog" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." -msgstr "O compilador fictício não gera arquivos." +msgstr "O construtor fictício não gera arquivos." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "O arquivo ePub está em %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "escrevendo o arquivo nav.xhtml..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "o valor da configuração “epub_language” (ou “language”) não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "o valor da configuração “epub_uid” deve ser XML NAME para EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "o valor da configuração “epub_title” (ou “html_title”) não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "o valor da configuração “epub_author” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "o valor da configuração “epub_contributor” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "o valor da configuração “epub_description” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "o valor da configuração “epub_publisher” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "o valor da configuração “epub_copyright” (ou “copyright”) não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "o valor da configuração “epub_identifier” não deve estar vazio para EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 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:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Os catálogos de mensagens estão em %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "alvos para os %d arquivos de modelo" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "lendo modelos… " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "escrevendo catálogos de mensagens… " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "link quebrado: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Falha ao compilar regex em linkcheck_allowed_redirects: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "As páginas de manual estão em %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 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:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "escrevendo" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "o valor da configuração “man_pages” faz referência a um documento desconhecido %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "A página HTML está em %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "montando documento único" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "escrevendo arquivos adicionais" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Os arquivos Texinfo estão em %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nExecute \"make\" nesse diretório para executá-los com makeinfo\n(use \"make info\" aqui para fazer isso automaticamente)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "nenhuma valor de configuração “texinfo_documents” encontrado; nenhum documento será escrito" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format 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:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "processando %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "resolvendo referências…" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (em " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "copiando arquivos de suporte Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "erro ao escrever o arquivo Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Os arquivos texto estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "erro ao escrever o arquivo %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Os arquivos XML estão em %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Os arquivos pseudo-XML estão em %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" -msgstr "arquivo de informações da compilação está quebrado: %r" +msgstr "arquivo de informações da construção está quebrado: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, 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:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" -msgstr "Falha ao ler o arquivo de informações de compilação: %r" +msgstr "Falha ao ler o arquivo de informações de construção: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "gerando índices" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "escrevendo páginas adicionais" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "copiando arquivos baixáveis… " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, 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:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "copiando arquivos estáticos" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, 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:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "copiando arquivos extras" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "não foi possível copiar o arquivo extra %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" -msgstr "Falha ao escrever o arquivo de informações de compilação: %r" +msgstr "Falha ao escrever o arquivo de informações de construção: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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." +msgstr "não foi possível carregar o índice de pesquisa, mas nem todos os documentos serão construídos: o índice ficará incompleto." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, 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:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "despejando inventário de objetos" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "despejando índice de pesquisa em %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 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:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer desconhecido %r é fornecido." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, 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:1255 +#: sphinx/builders/html/__init__.py:1253 #, 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:1264 +#: sphinx/builders/html/__init__.py:1262 #, 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:1268 +#: sphinx/builders/html/__init__.py:1266 #, 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:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "o arquivo logo %r não existe" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "o arquivo favicon %r não existe" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 não encontra mais suporte no Sphinx. (\"html4_writer=True\" detectado nas opções de configuração)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" -msgstr "documentação %s %s" +msgstr "Documentação %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Os arquivos LaTeX estão em %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 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:158 +#: sphinx/builders/latex/__init__.py:160 #, 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:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, 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:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "copiando arquivos de suporte TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "copiando arquivos de suporte TeX…" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "copiando arquivos adicionais" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Chave configuração desconhecida: latex_elements[%r], ignorado." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Opção de tema desconhecida: latex_theme_options[%r], ignorada." @@ -1158,22 +1200,22 @@ msgstr "%r não possui a configuração \"theme\"" msgid "%r doesn't have \"%s\" setting" msgstr "%r não possui a configuração \"%s\"" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "Falha ao obter um docname!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "Falha ao obter o docname para a fonte {source!r}!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "Nenhuma nota de rodapé foi encontrada para o nó de referência %r" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" -msgstr "Ocorreu uma exceção enquanto compilava, iniciando depurador:" +msgstr "Ocorreu uma exceção enquanto construía, iniciando depurador:" #: sphinx/cmd/build.py:61 msgid "Interrupted!" @@ -1225,8 +1267,8 @@ msgstr "Um relatório de erro pode ser preenchido no rastreador em ." msgstr "Para mais informações, visite ." @@ -1258,257 +1300,264 @@ msgid "path to output directory" msgstr "caminho para o diretório de saída" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "uma lista de arquivos específicos para recompilar. Ignorado se -a for especificado" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "(opcional) uma lista de arquivos específicos para reconstruir. Ignorado se --write-all for especificado" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "opções gerais" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "compilador para usar (padrão: html)" +msgid "builder to use (default: 'html')" +msgstr "construtor para usar (padrão: 'html')" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "executa em paralelo com N processos, quando possível. 'auto' usa o número de núcleos da CPU" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "escrever todos os arquivos (padrão: escrever apenas arquivos novos e alterados)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "não usa um ambiente salvo, sempre lê todos os arquivos" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "caminho para o ambiente em cache e arquivos doctree (padrão: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "compila em paralelo com N processos onde possível (o valor especial “auto” será definido com N para número de CPUs)" +msgid "path options" +msgstr "opções de caminho" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "caminho no qual o arquivo de configuração (conf.py) está localizado (padrão: mesmo que SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "diretório para arquivos de doctree e de ambiente (padrão: OUTPUT_DIR/.doctrees)" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "usa nenhum arquivo de configuração, apenas as opções -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "diretório para o arquivo de configuração (conf.py) (padrão: SOURCE_DIR)" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "usa nenhum arquivo de configuração, apenas usa configurações das opções -D" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "sobrescreve a configuração no arquivo de configuração" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "passa um valor para modelos em HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: inclui blocos “only” com TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "modo exigente, avisa sobre todas as referências em falta" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "modo exigente: avisa sobre todas as referências em falta" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "opções de saída do console" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "aumenta o nível de detalhamento (pode ser repetido)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "nenhuma saída para stdout, apenas avisos na stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "nenhuma saída, nem mesmo avisos" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "emite saída colorida (padrão: detectar automaticamente)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "não emite saída colorida (padrão: detectar automaticamente)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "opções de controle de aviso" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "escreve avisos (e erros) para o arquivo fornecido" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "transforma avisos em erros" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "com -W, segue em frente ao receber avisos" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "com --fail-on-warning, segue em frente ao receber avisos" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "mostra rastro completo em exceção" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "executa Pdb na exceção" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "não é possível combinar a opção -a e nomes de arquivos" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "não foi possível abrir o arquivo de aviso %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "o argumento da opção -D deve estar no formato nome=valor" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "o argumento da opção -A deve estar no formato nome=valor" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "insere docstrings automaticamente a partir de módulos" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "testa trechos de código automaticamente em blocos de doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "cria link entre documentação Sphinx de diferentes projetos" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "escreve entradas “todo” que podem ser mostradas ou ocultadas na compilação" +msgstr "escreve entradas “todo” que podem ser mostradas ou ocultadas na construção" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "verifica por cobertura da documentação" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "inclui matemática, renderizada como imagens PNG ou SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "inclui matemática, renderizada no navegador por MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "inclusão condicional de conteúdo com base nos valores de configuração" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "inclui links para o código-fonte dos objetos Python documentados" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "cria um arquivo .nojekyll para publicar o documento em páginas do GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Insira um nome de caminho válido." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Insira algum texto." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Insira um entre %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Insira “y” ou “n”." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Insira um sufixo de arquivo, p.ex., “.rst” ou “.txt”." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Bem-vindo ao utilitário de início rápido do Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Digite valores para as seguintes configurações (basta pressionar Enter\npara aceitar um valor padrão, se houver um entre colchetes)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Caminho raiz selecionado: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Insira o caminho raiz para a documentação." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Caminho raiz para a documentação" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Erro: um conf.py existente foi encontrado no caminho raiz selecionado." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart não vai sobrescrever projetos Sphinx existentes." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Insira um novo caminho raiz (ou pressione Enter para sair)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." -msgstr "Você tem duas opções para definir o diretório de compilação para a saída\nSphinx. Você pode usar um diretório \"_build\" no caminho raiz ou separar\nos diretórios de \"origem\" e \"compilação\" no caminho raiz." +msgstr "Você tem duas opções para definir o diretório de construção para a saída\nSphinx. Você pode usar um diretório \"_build\" no caminho raiz ou separar\nos diretórios de \"origem\" e \"construção\" no caminho raiz." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" -msgstr "Separar os diretórios de origem e compilação (y/n)" +msgstr "Separar os diretórios de origem e de construção (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Dentro do diretório raiz, mais dois diretórios serão criados; \"_templates\"\npara modelos HTML personalizados e \"_static\" para folhas de estilo (CSS)\npersonalizadas e outros arquivos estáticos. Você pode inserir outro prefixo\n(como \".\") para substituir o sublinhado." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Prefixo do nome para o diretório de modelos e de arquivos estáticos" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." -msgstr "O nome do projeto vai aparecer em vários lugares na documentação compilada." +msgstr "O nome do projeto vai aparecer em vários lugares na documentação construída." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Nome do projeto" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Nome(s) de autor(es)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1517,15 +1566,15 @@ msgid "" "just set both to the same value." msgstr "O Sphinx tem a noção de uma \"versão\" e um \"lançamento\" para o software.\nCada versão pode ter vários lançamentos. Por exemplo, para Python a\nversão é algo como 2.5 ou 3.0, enquanto o lançamento é algo como 2.5.1\nou 3.0a1. Se você não precisa dessa estrutura dupla, apenas defina ambos\ncom o mesmo valor." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Versão do projeto" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Lançamento do projeto" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1535,21 +1584,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Se os documentos forem escritos em um idioma diferente do inglês, você\npode selecionar um idioma aqui pelo seu código de idioma. O Sphinx,\nentão, traduzirá o texto gerado para esse idioma.\n\nPara obter uma lista dos códigos suportados, consulte\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Idioma do projeto" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "O sufixo do nome de arquivo para arquivos fonte. Normalmente, isso é\n\".txt\" ou \".rst\". Apenas arquivos com este sufixo são considerados\ndocumentos." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Sufixo de arquivos-fonte" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1557,91 +1606,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Um documento é especial por ser considerado o nó superior da \"árvore de\nconteúdo\", ou seja, é a raiz da estrutura hierárquica dos documentos.\nNormalmente, isso é \"index\", mas se o documento \"index\" for um modelo\npersonalizado, você também poderá configurá-lo para outro nome de arquivo." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Nome do seu documento mestre (sem sufixo)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Erro: o arquivo mestre %s já foi encontrado no caminho raiz selecionado." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart não vai sobrescrever o arquivo existente." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Insira um novo nome de arquivo, ou renomeie o arquivo existente e pressione Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Indique qual das seguintes extensões do Sphinx devem ser habilitadas:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Nota: imgmath e mathjax não podem ser habilitados ao mesmo tempo. imgmath foi desmarcado." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Um Makefile e um arquivo de comando do Windows podem ser gerados para você,\npara que você só precise executar, p.ex., \"make html\" em vez de invocar o\nsphinx-build diretamente." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Criar um Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Criar um arquivo de comando do Windows? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Criando o arquivo %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "O arquivo %s já existe, ignorando." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Finalizado: uma estrutura de diretório inicial foi criada." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Agora você deve preencher seu arquivo mestre %s e criar outros arquivos-fonte\nda documentação. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "Use o Makefile para compilar os documentos, assim:\n make builder" +msgstr "Use o Makefile para construir os documentos, assim:\n make construtor" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" -msgstr "Use o comando sphinx-build para compilar os documentos, assim:\n sphinx-build -b compilador %s %s" +msgstr "Use o comando sphinx-build para construir os documentos, assim:\n sphinx-build -b construtor %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." -msgstr "sendo “compilador” um dos compiladores com suporte, p.ex., html, latex ou linkcheck." +msgstr "sendo “construtor” um dos construtores aceitos, p.ex., html, latex ou linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1651,135 +1700,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nGera os arquivos necessários para um projeto Sphinx.\n\nO sphinx-quickstart é uma ferramenta interativa que faz algumas perguntas\nsobre o seu projeto e gera um diretório de documentação completo e um\nMakefile de amostra para ser usado com o sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "modo silencioso" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "raiz do projeto" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Opção Estrutura" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" -msgstr "se especificado, separa diretórios de fonte e de compilação" +msgstr "se especificado, separa diretórios de fonte e de construção" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "se especificado, cria o dir de construção sob o dir fonte" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "substituto para ponto em _templates etc." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Opções básicas do projeto" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "nome do projeto" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "nomes de autores" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "versão do projeto" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "lançamento do projeto" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "idioma dos documentos" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "sufixo de arquivos-fonte" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "nome do documento mestre" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "usa epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Opções extensão" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "habilita a extensão %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "habilita extensões arbitrárias" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Criação de Makefile e arquivo Batch" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "cria makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "não cria makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "cria arquivo batch" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "não cria arquivo batch" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "usa modo make para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "não usa modo make para Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Modelo de projeto" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "diretório para arquivos de modelos" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "define uma variável modelo" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "“quiet” está especificada, mas “project” ou “author” não foi." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Erro: o caminho especificado não é um diretório, ou arquivos sphinx já existem." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart só gera em um diretório vazio. Especifique um novo caminho raiz." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Variável de modelo inválida: %s" @@ -1830,47 +1879,47 @@ msgstr "Não é possível usar “lineo-match” com um conjunto separado de “ msgid "Line spec %r: no lines pulled from include file %r" msgstr "Especificação de linha %r: nenhuma linha obtida do arquivo incluído %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "o padrão de glob do toctree %r não correspondeu a nenhum documento." -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree contém referência ao documento excluído %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree contém referência ao documento inexistente %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "entrada duplicada encontrada no toctree: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor da seção: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr ".. conteúdo acks não está na lista" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr ".. conteúdo hlist não está na lista" @@ -1885,82 +1934,10 @@ msgstr "A opção \":file:\" para a diretiva csv-table agora reconhece um caminh msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parâmetros" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "Valores de retorno" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Retorna" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tipo de retorno" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membro" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variável" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "função" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "struct" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "união" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerador" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipo" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "parâmetro de função" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Novo na versão %s" +msgid "Added in version %s" +msgstr "Adicionado na versão %s" #: sphinx/domains/changeset.py:24 #, python-format @@ -1972,346 +1949,423 @@ msgstr "Alterado na versão %s" msgid "Deprecated since version %s" msgstr "Obsoleto desde a versão %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "Removido na versão %s" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "citação duplicada %s, outra instância em %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "citação [%s] não é referenciada." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Declaração C++ duplicada, também definida em %s:%s.\nA declaração é '.. cpp:%s:: %s'." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parâmetros do Modelo" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Lança" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "classe" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "conceito" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "parâmetro de modelo" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Lança" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Retorna" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipo de retorno" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "função" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "classe" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "descrição duplicada de %s de %s, outro %s em %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format 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:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variáveis" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (diretiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Levanta" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (opção diretiva)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (papel)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "diretiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "opção diretiva" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "papel" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "descrição duplicada de %s %s, outra instância em %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parâmetros" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "Valores de retorno" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membro" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variável" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "struct" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "união" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerador" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipo" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "parâmetro de função" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parâmetros do Modelo" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Declaração C++ duplicada, também definida em %s:%s.\nA declaração é '.. cpp:%s:: %s'." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "conceito" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "parâmetro de modelo" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "exceção" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" -msgstr "" +msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :no-index: para um deles" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, 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:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (diretiva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (opção diretiva)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (papel)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "diretiva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "opção diretiva" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "papel" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variáveis" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "descrição duplicada de %s %s, outra instância em %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Levanta" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" -msgstr "váriavel de ambiente; %s" +msgstr "variável de ambiente; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s opção de linha de comando" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "opção de linha de comando" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 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:354 +#: sphinx/domains/std/__init__.py:356 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:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "o glossário parece estar mal formatado, confira o recuo" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "Glossário de Termos" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "termo gramatical" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "marca referencial" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" -msgstr "váriavel de ambiente" +msgstr "variável de ambiente" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opção do programa" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Busca" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "rótulo duplicada %s, outra instância em %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, 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:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está desabilitado. :numref: é ignorado." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, 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:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "o link não possui legenda: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format inválido: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format inválido: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "rótulo não definido: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "Falha ao criar uma referência cruzada. Título ou legenda não encontrado: %r" @@ -2328,35 +2382,35 @@ msgstr "configuração alterada" msgid "extensions changed" msgstr "extensões alteradas" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" -msgstr "a versão do ambiente de compilação não é a atual" +msgstr "a versão do ambiente de construção não é a atual" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "diretório de fontes foi alterado" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "Este ambiente é incompatível com o compilador selecionado, por favor escolha outro diretório de doctree." +msgstr "Este ambiente é incompatível com o construtor selecionado, por favor escolha outro diretório de doctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Falha ao procurar documentos em %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "O domínio %r ainda não está registrado" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "o documento não está incluído em nenhum toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "toctree autorreferenciada encontrada. Ignorado." @@ -2380,39 +2434,39 @@ msgstr "tipo desconhecido de entrada de índice %r" msgid "Symbols" msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "referências circulares à toctree detectadas, ignorando: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree contém referência ao documento %r que não possui título: nenhum link será gerado" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "toctree contém referência ao documento não incluído %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "arquivo de imagem não legível: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "arquivo de imagem %s não legível: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "arquivo de download não legível: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s já tem números de seção atribuídos (toctree numerada aninhada?)" @@ -2422,7 +2476,7 @@ msgstr "%s já tem números de seção atribuídos (toctree numerada aninhada?)" msgid "Would create file %s." msgstr "Criaria o arquivo %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2434,149 +2488,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nProcura recursivamente em módulos e pacotes Python e cria um\narquivo reST com diretivas automodule por pacote no .\n\nOs s podem ser padrões de arquivo e/ou diretório que serão\nexcluídos da geração.\n\nNota: Por padrão, este script não substituirá os arquivos já criados." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "caminho para o módulo a ser documentado" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "padrões de diretório e/ou arquivo no estilo fnmatch para excluir da geração" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "diretório para colocar toda a saída" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "profundidade máxima de submódulos para mostrar no TOC (padrão: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "sobrescreve arquivos existentes" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "segue links simbólicos. Poderoso quando combinado com collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "escreve o script sem criar arquivos" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "coloca a documentação para cada módulo em sua própria página" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "inclui módulos “_private”" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "nome de arquivo da tabela de conteúdo (padrão: modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "não cria um arquivo de tabela de conteúdo" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "não cria títulos para os pacotes de módulo/pacote (p.ex., quando as docstrings já os contêm)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "coloca documentação de módulo antes da documentação do submódulo" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpreta caminhos de módulos de acordo com a especificação de espaços de nomes implícitos PEP-0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "sufixo dos arquivos (padrão: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "gera um projeto completo com sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "acrescenta module_path a sys.path, usando quando --full é fornecido" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "nome do projeto (padrão nome do módulo raiz)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "autor(e)s do projeto, usado quando --full é fornecido" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "versão do projeto, usado quando --full é fornecido" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "lançamento do projeto, usado quando --full é fornecido, padrão é --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "opções de extensão" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s não é um diretório." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "a seção \"%s\" fica rotulada como \"%s\"" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "regex inválida %r em %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Teste de cobertura nos fontes finalizada, confira os resultados em %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "regex inválida %r em coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "api c não documentada: %s [%s] no arquivo %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "o módulo %s não pôde ser importado: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "função python não documentada: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "classe python não documentada: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "método python não documentado: %s :: %s :: %s" @@ -2600,24 +2654,24 @@ msgstr "“%s” não é uma opção de pyversion válida" msgid "invalid TestCode type" msgstr "Tipo de TestCode inválido" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Teste de doctests nos fontes finalizada, confira os resultados em %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "nenhum código/saída no bloco %s em %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "ignorando código de doctest inválido: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "=================== durações de leitura mais lentas ====================" @@ -2628,32 +2682,32 @@ 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/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 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" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Arquivo externo de Graphviz %r não encontrado ou sua leitura falhou" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorando diretiva “graphviz” sem conteúdo." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" -msgstr "" +msgstr "O caminho do executável graphviz_dot deve ser definido! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "comando de DOT %r não pode ser executado (necessário para a saída do graphviz), verifique a configuração do graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2663,7 +2717,7 @@ msgid "" "%r" msgstr "DOT encerrado com erro:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2673,27 +2727,27 @@ msgid "" "%r" msgstr "DOT não produziu um arquivo de saída:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format deve ser um entre “png” e “svg”, mas é %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "código DOT %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2701,7 +2755,7 @@ msgid "" "Traceback: %s" msgstr "Não é possível executar o comando de conversão de imagem %r. 'sphinx.ext.imgconverter' requer ImageMagick por padrão. Verifique se ele está instalado ou defina a opção 'image_converter' para um comando de conversão personalizado.\n\nRastreamento: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2711,173 +2765,178 @@ msgid "" "%r" msgstr "convert encerrado com erro:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "comando de conversão %r não pode ser executado, verifique a configuração image_converter" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "o comando LaTeX %r não pode ser executado (necessário para exibir matemáticas), verifique a configuração imgmath_latex" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "o comando %s %r não pode ser executado (necessário para exibir matemáticas), verifique a configuração imgmath_%s" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "exibe latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "latex em linha %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" -msgstr "" +msgstr "Link para esta equação" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "o inventário intersphinx foi movido: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "carregando inventário intersphinx de %s…" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontrados alguns problemas com alguns dos inventários, mas eles tem alternativas em funcionamento:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "falha ao alcançar todos os inventários com os seguintes problemas:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(em %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "inventário para referência cruzada externa não encontrado: %r" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "inventário para referência cruzada externa não encontrado: %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "sufixo inválido de referência cruzada externa: %r" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "papel para referência cruzada externa não encontrado: %s" +msgid "domain for external cross-reference not found: %r" +msgstr "domínio para referência cruzada externa não encontrado: %r" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "alvo da referência externa %s:%s não encontrado: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identificador intersphinx %r não é uma string. Ignorado" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Falha ao ler intersphinx_mapping[%s], ignorado: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[código fonte]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "Entrada de “TODO” encontrada: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(A <> está localizada na %s, linha %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "realçando código de módulo… " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Código fonte para %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Visão geral: código do módulo" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "valor inválido para a opção member-order: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "valor inválido para a opção class-doc-from: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "assinatura inválida para auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: falhou em determinar %s.%s (%r) a ser documentado, a seguinte exceção foi levantada:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2885,112 +2944,112 @@ msgid "" "explicit module name)" msgstr "não sei qual módulo importar para documentação automática %r (tente colocar uma diretiva “module” ou “currentmodule” no documento ou forneça um nome explícito para o módulo)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "Um objeto simulado foi detectado: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "erro ao formatar assinatura para %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "“::” no nome de automodule não faz sentido" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "argumentos de assinatura ou anotação de retorno fornecidos para automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ deve ser uma lista de strings, não %r (no módulo %s) -- ignorando __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Falha ao obter uma assinatura de construtor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "faltando atributo %s no objeto %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Falha ao analisar um valor de argumento padrão para %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "Falha ao atualizar a assinatura para %r: parâmetro não encontrado: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "Falha ao analisar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referências de autosummmary excluíram o documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: arquivo stub não encontrado %r. Verifique sua configuração autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Um autosummary com legenda requer a opção :toctree:. Ignorado." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2998,25 +3057,25 @@ msgid "" "%s" msgstr "autosummary: falha ao importar %s\nPossíveis dicas:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "falha ao analisar o nome %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "autosummary gera arquivos .rst internamente. Mas seu source_suffix não contém .rst. Ignorado." #: sphinx/ext/autosummary/generate.py:200 @@ -3090,99 +3149,99 @@ msgid "" "%(default)s)" msgstr "documenta exatamente os membros no módulo atributo __all__. (padrão: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumentos de Palavras-chave" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Exemplo" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Exemplos" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Notas" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Outros Parâmetros" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "Recebe" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Referências" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "valor inválido definido (faltando chave de fechamento): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "valor inválido definido (faltando chave de abertura): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "string literal malformada (faltando aspas de fechamento): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "string literal malformada (faltando aspas de abertura): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Ver também" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Aviso" @@ -3214,7 +3273,7 @@ msgid "Table of Contents" msgstr "Tabela de Conteúdo" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Buscar" @@ -3347,34 +3406,22 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Pesquisando por várias palavras só mostra correspondências\nque contêm todas as palavras." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Resultados da Busca" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Sua busca não encontrou nenhum documento. Por favor, confirme se todas as palavras estão grafadas corretamente e se você selecionou categorias suficientes." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Busca rápida" @@ -3411,20 +3458,30 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Resultados da Busca" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Sua busca não encontrou nenhum documento. Por favor, confirme se todas as palavras estão grafadas corretamente e se você selecionou categorias suficientes." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "Pesquisa finalizada, encontrada(s) ${resultCount} página(s) correspondendo à consulta da pesquisa." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Preparando a busca..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", em " @@ -3445,30 +3502,30 @@ msgstr "Expandir painel lateral" msgid "Contents" msgstr "Conteúdos" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" -msgstr "" +msgstr "não foi possível calcular o progresso da tradução!" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" -msgstr "" +msgstr "nenhum elemento traduzido!" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "Um índice de 4 colunas encontrado. Pode ser um erro de extensões que você usa: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Nota de rodapé [%s] não é referenciada." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Nota de rodapé [#] não é referenciada." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3480,13 +3537,13 @@ msgid "" "{1}" msgstr "referências inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 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:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,97 +3570,97 @@ msgstr "%s:alvo de referência %s não encontrado: %s" msgid "%r reference target not found: %s" msgstr "alvo de referência %r não encontrado: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Não foi possível obter imagem remota: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Não foi possível obter imagem remota: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Formato de imagem desconhecido: %s…" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres de origem não codificáveis, substituindo por “?”: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "ignorado" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "falhou" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "Problema no domínio %s: o campo deveria usar o papel \"%s\", mas esse papel não está no domínio." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "diretiva ou nome de papel desconhecida(o): %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "tipo de nó desconhecido: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "erro de leitura: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "erro de escrita: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" -msgstr "" +msgstr "locale_dir %s não existe" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Formato de data inválido. Envolva a string com aspas simples se desejar emiti-la diretamente: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r foi descontinuado para entradas de índice (da entrada %r). Use \"pair: %s\"." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contém referência ao arquivo inexistente %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "papel padrão %s não encontrado" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" -msgstr "" +msgstr "Link para esta definição" #: sphinx/writers/html5.py:397 #, python-format @@ -3617,29 +3674,29 @@ msgstr "Quaisquer IDs não atribuídos ao nó %s" #: sphinx/writers/html5.py:462 msgid "Link to this term" -msgstr "" +msgstr "Link para este termo" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" -msgstr "" +msgstr "Link para este cabeçalho" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" -msgstr "" +msgstr "Link para esta tabela" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" -msgstr "" +msgstr "Link para este código" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" -msgstr "" +msgstr "Link para esta imagem" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" -msgstr "" +msgstr "Link para este toctree" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 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." @@ -3656,13 +3713,13 @@ msgstr ":maxdepth: grande demais, ignorado." 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:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 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:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas de rodapé" @@ -3681,20 +3738,20 @@ msgstr "a unidade de dimensão %s é inválida. Ignorada." msgid "unknown index entry type %s found" msgstr "tipo desconhecido de entrada de índice %s encontrado" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "legenda não dentro de uma imagem." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nó não implementado: %r" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 8470498c2d28641506646c3dd3c29f5bf4c55059..395ac72b9cdd36f635bbbbce08908c6c271d7f12 100644 GIT binary patch delta 2362 zcmYM!eQ1?c9KiA8UUbWC&O2RKr#aV(Xt*}J%aApkv0@q#s8m~jWFZllXatr;5526x zu!PZIB`R54W}6dk3Cn~LSu8A*R+g(F^~czX-bkUcm+yBSXgqs9&pG!w=lp)ZbM75$ zJkXd-r1E+Ke=qRAg#X=nw*LRSR1iWj&A%`o=N5**73OoZU4dn|9Oq+0Y~PCIwA-;1 zAI1`V1}m`}c|QqR9_G?<61l<|ZVntr2mXqeWA0@kq_F~vFoQ1KjE>)g2DBOL@BysA zUR;Q8q4R$f9m4|F4--5z@xkOwM+jFln;Bn+bMPi~f|l6djt2H1F2-F*aY7Hez_3kz5q?7}G^>RATjB!VHjq-Zy##%s8W&(q{Co{^h1k1vd(13p719LFyF0UfxLIy&)_=zCqU-5uNe(E$2! zDGs3ve~gYhi*DI>XeFi+9{k!}L<1>fRR^Te%&X8-zbf|MfiBR7R59Ei-GNS=pc8js z6?Vt|x6uTSN8gJkqdb_&r)U6Qq7!_BBps&F1%F4bki(bO{xWn6s*u=26FUBObfFEn z2-{-&5wrr2qk(rKXDA6hJUH-8bfKfTfMY+54)}x2hsP2(F9JS6+ewP`~5%5gPB+GHjkkiePJ~^!CG!cd^Z}%R`hT^i%xhj zI)Ik`7&_kxG@%dB0KY}YPofq32NNeMrPs`A(O?a2%a)4ky_DDm0NBqOED_Z>0CoVTrb&k?lYid>S3ti5|+mSc!+w_eZf6 zKS!>xj1%Yh8?hQ&(FC`}{@rNc`=Wh|sK2LoFm{~4nLR>+52w)pCXs4|KhdAm6lobi z2K{^u8sNt0W^|ryvHd8TP)D>Ye!eH+!IHj&p7PhwGjJFW;0QYLy=EV z=tBKy0t3huj&XD0F|=~yXy()CJeM%fO)S0Qzkv(0g@xsLuhtjm7iU(~WmeQ@Dpy{= adgZEYQ)+NlZl<;_`(s&OUba7dB>!JT6wviOW$v4Ie7VKp;efa9?dU0_KZUxNm=39rVjI01K|8|=ez_z|*X zID`iBB^uyav=YB!4*Q3{Xqa)5wA{D^&1^PiVSVi1fxew3=tj%X1y`T}u8wX&=XYWm zzK4^sAGyL$v40LT>>Wnq2T67};uQKWXT<)^=*D%(6&7$a<3@DjhtPRX;X-Uf12}+Y zdKAm?L>$jz&_D|FslTO~#ek)rjRsU5`}OGOi*Xt@#?PNXuF%ZQ(msb)WIOt5y3qi8 z(e*w?*FSmF49~^~hS3Ql=z^DUE9O&2CvHaXI2&w-l4muU`=wNDVrn4$Zs)J^hcw@%88i?MPL_i_s2r;VyLD zJ$McF#_{jb1WrUVXJTU*&Ex_az(sU{f05)vE(gL5i; z;&g0}{Z6z3Zy|wa!n-s)MElW+U!fZf;53f^AUff9PL!GbjaDX$ve?f>E0p49VArFE zuNM7Q-HR*{mZJf;q7``oQ-1&V&@j^j=qdgj&1e9fcs}-x(jTG{wB+-UkHSJUz@=yc z%hBJHC(&2B2MweTeQpp<;Ab4~_x}$Xcj73T`RzPSGb~15$)o53E4ZcbSu~JW(ZjVH zU9c~D6fOM^=z6EngnmH-OfcE`Iov#dp^SzLRil~RkN&bfhP;8W2}`jZUEoc$Qe8N9 z`jIR2ax>$8^c9@L3cQ4_cOxg*@dh-Jhl{AcjWrAy>1MP9N#&VL%qaWk4|cO3t8I`ub$0S5FqdWwf){{mXti%1e7K^g{7 zf>bk9qCc^Bp#iLlpSPj`z8vjD*XfS^y=X!QGO=+eKG27j_9%L~e?-s1Dcpf0=)&80 zp`PZQ=<^?<;|I}79zhcsz*#sH$H(!09G{GykxVHKPx*CdCbj6s%g~6M&;V8=MF?Ba z4c|aF+J#nRU-UDylHZ{fI*B*n2)gb}>hH$o$a9%cak&xZq6^*@Z9vaPBl-@T;`q8a z{tUYDE9m#R3*E2}-DnU^;52fDVQy}mGxKugrr=b+7o{{@s0w{2i_nSp^o&j@OiXS| zuWC+jT)BS3s+Q*TwHtbJ^Rkn9bLUjn&Z)XJT{W++rnaXfwfBnb>YJ*1`U`d?QunoN UY)LmiJ~roYcZ+k@7JZQX57jf_Gynhq diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 246817dfd5d..acf5826d9c7 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Komiya Takeshi , 2016\n" "Language-Team: Portuguese (Portugal) (http://app.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: pt_PT\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Módulos" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (em " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Versão" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor da secção: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,82 +1930,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parâmetros" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Retorno" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tipo de retorno" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membro" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variável" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "função" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tipo" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Novo na versão %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "Alterado na versão %s" msgid "Deprecated since version %s" msgstr "Obsoleto desde a versão %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Gera" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "classe" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Parâmetros" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Gera" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Retorno" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipo de retorno" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "função" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "classe" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "módulo" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variáveis" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directiva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Levanta" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (papel)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directiva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "papel" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parâmetros" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membro" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variável" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tipo" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "excepção" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directiva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (papel)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directiva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "papel" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variáveis" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Levanta" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variável de ambiente; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "Termo de glossário" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "token de gramática" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "rótulo de referência" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variável de ambiente" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opção de programa" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Pesquisa" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[código fonte]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Código fonte de %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Visão geral: código do módulo" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Veja também" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Aviso" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Pesquisar" @@ -3343,34 +3402,22 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "pesquisar" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Resultados da Pesquisa" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "A sua pesquisa não encontrou nenhum documento. Por favor, confirme que todas as palavras estão escritas corretamente e que selecionou categorias suficientes." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Pesquisa rápida" @@ -3407,20 +3454,30 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Resultados da Pesquisa" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "A sua pesquisa não encontrou nenhum documento. Por favor, confirme que todas as palavras estão escritas corretamente e que selecionou categorias suficientes." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "A Pesquisar" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "A preparar a pesquisa..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", em" @@ -3441,30 +3498,30 @@ msgstr "Expandir painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas de rodapé" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index c764f0327e9074e891654bab14195f8401a37380..941b2151cf7d5342b9df0859db2e3fc63ee353b0 100644 GIT binary patch delta 2508 zcmYM#YfRQv9Ki9zO+W(^A_a+%q-ez@C1dG~p|!Nzx@e`N%SQDgN2}b-OFd0`6H`XH zL}+c*Xg1ke_^g^^PAW9DV7Vw(F3rkvkpp@Yv~~G@@oce&=X1{apUdxe&iTWq^*ibl zr}ENY3;cBOTg>lpy0!m*c4UW;Lv<%+;OodIycO#`m`}YI=iuR3AHhqhkK)CcIx~b^ z%*RqJL;5Ge3JSAmScCKpkD>#gL}hpiMG*n(!h6Ahpn&2T@a;*nTChMv;*=(r!ziGN1}{Ue&iB#tk^ z1-J-j<9%pgO_-o>cq%^Fh9nhspzV9mj_*X@M;GoxKB1p4Gao`19zpw`#|E5416WGB zW_%Z43-KYey(O3ZccBg%+_G+T%X`p3lCgd$KK~3ap?xSm{|WhoF}~d5f6yH%B2ABI zAsXQI=zPo3`B%sGduFr$4p>ja{rDIf$U#iQ0W{;IXum;pf)R9q)7XmR=(w#ky3lsC zUt6s2j`g?EfcD{Km`qS`;uGk=ljvFgitfyL^tJp84P-9wjQxwz`jzOGUxV(<67(&( z4ei$ypEsj-Ycm=^J90W9(HRSS(S<)i7w*F{JQ~|a(F`Y|lhJ?COlRa>2q+gFpN}3* zDY{@al0&GA?W>R@ON0j~uzO)6n$b(>LN8+>w#WKDbccG;$Pc0!evZ?xCpvxNrKiz#>;%g{iUpj&kd`hGVeNrva*^H#iydKWtG6Z8naK^H!Q z{=xbU%{Z0GOe7zjuM$n*RxI%SUrWI)+khUyW~|2qUXK0fgg>B>PofK@(&$djLSMH$ z^!Xa}E=~$mYC!E5Cn8wX=!3uQ3YINKx^sMhj zGkYZ3j0Um|9rp^B;2t!AkLI!eF3?YdnIA`XEqsZk_zQA;A(PeI@*;E#8_)?G(dSLk zP3RG}qJeaw3%whk_oC|zp#6>)vj0Z-9S!9;hMr{st1QD(^z~~*&w2}9i)~13p%2~C zVRYPCbir{nfGIS=Os=}^bI|pQ(D|wp6gbYX0-bOj+VR=gVOy-XqYHGR6L!b?duRX$ zun~{P_6nl*wl7Be*F_u9yLLMgTSz=eVHbss=$2&hXUPup&_K##y$YRZX>7k4ub_S> zdIz3Cu1VN}9?h%h4s@dbeDHZ=1Nbio7Y>-aGm_#kGR(J2aEigV}$f1??vBs;UOPEQW! qypfSpTUk?Ed0lPkqQy5Zx*_>O{+lUjwN*9A1qJ)lljjQ8&-f2clH@D^ delta 2561 zcmYM#duY~G7{Kwf`=-w6rnOt`HRladr){)stT7@+RI)BiWMYA<)Y{NZEwkRPN@lUr zr1FAYu_oo5L8*UareU~}%tC64l39{87Ll@~zF$4i*xt{%{LVSgdCvL0TT{2ME_pmZ z{nfzFYy6e+_fxvH|9>{-gpf;h6J}r+@*BEieK!_R--{#hXsn;XE2t0R2+SW6!f+gm z37n2RpA2_V7)nD6@@!ay4txw9_zGT$Z(||u#$os!y6{PK{9kB*DO4&j3rnyXN8{b- z{0pKTn9cg(2@17zth&??!U1&0-(VK@p%a{r?Sp7wIYd#6#h8s%=mNEvi490hVI~^L zY&5{7XeL%*7VC!>C^&E}y7NtF06WngevYa5eXJitPw5;wZUCM5A2iTZ25TWYehQAk zdd$OlXkZ))aQ^dZ0D6dz`wA6@tYIxdfG)?+am z$Q*R%i})zVCx?@NJKm+i1wTbocK}U&FB;I%SU(y2f5TC<_s9MWwnZ_FL{ptWGgE^e z)h%d%P3V00qVqqLNB-^Tpuqu;V-v1I137_d_zSw@v*>ewpc7m`7f9h_HRhw^HlYi> zgFd%C)<22$FVJ-lB`I7*;V3%spXk7g=$Yn_cQccRzMiFMAUB}T*T#ASn)2Jx%*;aH zmWR>jR>uBL^p0&n14!!VG-_#^+RZej-Y{`KzDc!y?lS8<8!%K zE|`y5ygnu9xUoEB|5VKJ{ja3pj%(4&crzNvEHqUQqVIVUNkVud_HV-p)c2s{enyYr zJi2figZ<(fhVHl=-AENW-%QN){a-+VG2sz3WiO!tZNNHw6U*=vI$IFq>64)-VZ8c@3JvdFX`h z!v2-f*U=-~h6b_+UFRz_kR#~xzZQ{y7aXL)0V&Mt10!)9jz`b*Hmt!W^fg?Eo_RN3 zi~EsS!vLDvq17C=&fIXKHnBiK1#t$_Y4wz=)|?yg=XX?zMbr!i3ZXf>n-R+ zi(~r=983K<^e()QT%*v99??NG1BcOnM#qtW$Uis12s5H1q9tfX#-kI>Ko`6-_BSIj zh6m8Vo<(>5B6@c=qer_FJ?mXK6?lG~O*E9)b?YM&~NQFG>hnKbH@ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index e83cd9549f5..73b0bab3572 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Razvan Stefanescu , 2015-2017\n" "Language-Team: Romanian (http://app.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" @@ -39,104 +39,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit cu această versiune." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Propuneri de Îmbunătățire Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Integrate" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Nivelul modul" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(în" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index General" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "următor" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "precedent" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Versiune" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autorul secțiunii:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autorul modulului:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autorul codului:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,82 +1930,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametrii" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Întoarce" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Tipul întors" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "membru" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabilă" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funcție" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enumerator" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tip" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nou în versiunea %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "Schimbat în versiunea %s" msgid "Deprecated since version %s" msgstr "Învechit începând cu versiunea %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Generează" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "clasă" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (clasă)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Generează" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Întoarce" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Tipul întors" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funcție" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "clasă" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variabile" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (directivă)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Generează" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "directivă" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rol" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametrii" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "membru" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabilă" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tip" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "excepție" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(învechit)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (directivă)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rol)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "directivă" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rol" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variabile" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Generează" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "variabilă de mediu; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "termen de glosar" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "element de gramatică" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "etichetă de referință" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "variabilă de mediu" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "opțiune a programului" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Index al modulelor" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pagină de Căutare" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "Simboluri" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[grafic: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[grafic]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[sursă]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "De făcut" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "înregistrarea inițială" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[documentație]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Codul modulului" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Codul sursă pentru %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Prezentare generală: codul modulului" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Toate modulele pentru care este disponibil codul sursă

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Atenție" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Avertisment" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Pericol" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Eroare" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Sugestie" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Notă" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Vezi și" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Sfat" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Atenționare" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Căutare" @@ -3343,34 +3402,22 @@ msgstr "Subiectul următor" msgid "next chapter" msgstr "capitolul următor" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activează JavaScript pentru a permite\nfuncția de căutare." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "căutare" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Rezultatele Căutării" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Căutarea nu a identificat nici un document. Te rog să te asiguri că toate cuvintele sunt scrise corect și că ai selectat suficiente categorii." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Căutare rapidă" @@ -3407,20 +3454,30 @@ msgstr "Schimbări în API C" msgid "Other changes" msgstr "Alte schimbări" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Rezultatele Căutării" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Căutarea nu a identificat nici un document. Te rog să te asiguri că toate cuvintele sunt scrise corect și că ai selectat suficiente categorii." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Căutare" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Se pregătește căutarea..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", în" @@ -3441,30 +3498,30 @@ msgstr "Expandare bară laterală" msgid "Contents" msgstr "Cuprins" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Note de subsol" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[figura: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[figură]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 164e30413108dd5b036aa78ddfadc8ce534858dd..3bf0c33c111c38740309d6c866a0604a7b90c504 100644 GIT binary patch delta 3403 zcmYM$drZ}39LMpmpojv>Mdf%2NJ$Yz4|u$Q3M85&lZI*DW>k`?t8`^b(ma$-o0LnG zd1W=1w?$Kj2w9?rEc3QGOXsyn)}$=dntzyB?~mu%Vu$m3p65K5@AG}0-+|U;-!Apv zh;CnD{G8*r55FIUsP_NQ!*H_*s%_W-!>IJdDC~qjRC^}I;CPI}8Lqw%dr)72kywFU za2F<+`K^Y623*82yoH+hZ`8m?sDa%X6^s4RgPBN7HXXHa5e~y*)I3$F!0Ip>>(Ptn zu{Q>FWlq+&I0}z<;>^TQI^<#|7P$6LFp2tBX9LDjzl~WKMwA+ths11Cu_L~M-EkrM zu+)8CgORLn4HSCe4;YWFsEN9g76s?ZNFO`WYC)y^FVqe?lQ*T-gF!gh)rVqx>N%)!xu}JwpmsXL`6g=o zD(7ZoYO6x6TOUpS$)5d8gLZNUb*BHI+Cv$wv-F_a6H)zAonuf(G7%NfVpJgSpmtt@ z-Ebw6RNIW&*j`jdYGcU1B0ffgCccQ{unBotBBPbEQK$(fq5_-YoR5jri&6b6QGp&n z9Z@|hkVe!-&bs<#_j!|_0x!G8n>w_i7VJb+I#UlmzMQB4Gf{y&i`u~~)VR5*g%-K? zWvEn_q5><&Jlut2@g8bkzn24_P9XyoaXAL#7F0?rk(ce@O#{9{E!2QY^=VW<=W#9m zf|}c|51l7OP)jxFgjmQT4ww;1*_fFIT4X6~Jb@eN#iJGxL-a++`<%;WR8ICD9 z4fQy#LuBob2i!ppIk> za%xtN%xSw(^Blv;cna0e!!u5DtRHIr42)oX%TWOfP>~m+B7YV2Rr{7}uRx`Cn{$VA zFKUPTQ47_fj;;YU&q>tIe{}85r~q2fud}=7Is|j$G$0yv`QmxgZ6A$1k(P&=_(fD8 zbCJ#2LRVjfI;t|%hBl!xu@kv(whuMF5f#9x-sE3}3p8kfYtB~8;~OW4zerZzy=Eycm;FQdR3 zR)^Vm#dYZYRNyi5;so0BQGskk1$fZakK;J%O|CtWXEcR+Dym;0>hisgUMxXf(kjf< z^IuCr9q;2b3?5*{%VzSX9lnqHybkr;H==fS6E)F&iY*Kj&MM5S~p7ehN;fC{V_m5G(8 z{s)}ru`~6%=w*F-NI?^)5M}{pBd1{HsH3SxUDC^_0PmvCIBam>QVl?+u-8zZm!krz z!f-r}>VFQk&Tpsy+R&dyA(SxHFdDVsGpP3Ys0?gFWoRF2qNA>U)zyDT?Y!fVz*Er! z6+jYdzOlFh3vm|SKy4^}DEa@GLc!3$?fnTANH8}g6uThVwOG`IPow@xeF6E-vbRxZ zzYg!=A=kb)HPG(_>MOYkHU0rcVpn#jOeLg||K})V(9i|fx(~LX9;a$#b9M=*VuxY; z?Z;U-N1x+-jPeDJZaHcLXHYx5gqpV%wUI|S1(Ud;SygXxp`cs+ z2$jlS)jcC7glt$GV+P&4G;vC84B)Fb4#UBijsZB`ju)eo{sMdqt8KpyBk6BP z2ex1cwxi1!x9Omv2mZhy^yjK34o5v0hk9@%M&Trk#$pV{Rj7q)F$1@v<~fTB_y-Kb zD>xkQU4 z>llG`n29^=^$v8fzUiXzINryB7)m)bQ5q_+Y#e|SkdK+mmv*TV193GfqgqtPJ5Uwc zg$m#pYQED*^2TGwucCVp12<`Cp#bWnk~>iu3`LbT8-20B_NQVm`X#96N>K|}qB5cFT(T?GG9x1lza#DX~dY=K6$d{|iAPBY4Ae?~7$StMHB51vO7ADzIay`_Fj$ZgbHNTt#JY6Ls2eqZSBZLsi0PR6hYVQ5rsp zqfqzHN4-7kFa>v@UeEKWzjdZOON&Exe4ZW$vQp3E~|u#0b=VB^b&2rksWrSdTi4o2=VVk?%o8-h}$; zJ!;2)L6!D~wa0oNmEqs0h5R@;N+<+1j}vvKT;56nS6W(i+9 z?HiC+*la;PzZ(_Eek57bV*B5qwyG1A*fmroZX?Ie{1rp}HGzY=D}V@V9BP3?YYtB4 z7pM?NGv3I?sxqCZid;fX{LqdEa1dykP}E^f#dyraR9u1zpmCtv`;W>22J#s=jhs8< zaC!GS2^Dz`>K7{?wYN)f7`kyN?nRxAPE-ZDaSHnKkSb7wN^}ltp80&`Vy%9EpP+FH zl}R@$^B_9fia693q+uD3Mq)I(@EL5!X&A^PPhl}uU<2|oy-AyDn<1!q^HAe6aU#0c z&`?HSVKR0iF&MuDW5!_u>iQzoYgU7K*oX?`Dk{K-wjazpIe~sMYPEg&!un=74Lw+FU2AXHj+DskMlJLc7GV#vOC~qjyHyKNhjs%h;O(eA zZ^c~v4vE2pvk$tSiwfu^bO+NYr=bUGPz$|}if|8(z!ux@MxBj&c07W2NfpUQRctnD zo~5?G(e}4u2;-lk-jb8306J2szb5>RfwdT%X3Q*n3zg9gd{Th zhB<|r@OR`V!uX|o|3~FQorO_&7fbB;i)5wymW`nP`i$;Am*oH-z$VpTJt5FHox@lTO08twIixQKoms-g*5-U>X6s=$2Y*qAyD$Iq|<-DhZM!g<-=y{tq9 zv;p4xhtWnev~sS(p9yhq|{YX zQNE~bv1{eLr7ITZaH+Y%`Ky1wjFjQoDd}0R^vs-*+06@Mulx9oNKJ1ph, 2022\n" "Language-Team: Russian (http://app.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" @@ -44,104 +44,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Проект требует версию Sphinx не ниже v%s и не может быть построен текущей версией." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "готово" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,70 +162,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "в конфигурационной папке нет файла conf.py file (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Отсутствует ключ конфигурации %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,290 +238,327 @@ msgid "" "%s" msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Событие %r уже существует" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Неизвестное событие: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Отсутствует аттрибут \"name\" у класса сборщика %s." -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Сборщик %r уже существует (в модуле %s)." -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Сборщик %s не зарегистрирован явно или через ресурсы пакетов." -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Сборщик %s не зарегистрирован." -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Изначальное исключение:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Не могу загрузить модуль расширения %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "расширение %r не определяет функцию setup(); это действительно модуль расширения Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Предложения об улучшениях Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:353 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -533,8 +575,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -583,7 +625,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -592,50 +634,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -644,36 +686,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "Не получается скопировать файл изображения %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "Не получается записать файл изображения %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -681,470 +723,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "записывается %s файл..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Встроенные функции" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Модуль" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (в " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Алфавитный указатель" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "указатель" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "вперёд" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "документация %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Алфавитный указатель" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Выпуск" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1159,15 +1201,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1226,8 +1268,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1259,7 +1301,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1267,249 +1311,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "Невозможно совмещать ключ -a и названия файлов" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "Не получается открыть файл с предупреждениями %r:%s " -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1518,15 +1567,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Версия проекта" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Релиз проекта" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1536,21 +1585,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Язык проекта" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1558,91 +1607,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Создание файла %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Файл %s уже существует, пропускаем." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1652,135 +1701,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "имя проекта" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "имена авторов" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "версия проекта" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "релиз проекта" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "язык проекта" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "использовать epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1831,47 +1880,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Автор раздела: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Автор кода:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Автор: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1886,82 +1935,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Параметры" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Результат" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Тип результата" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "поле" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "переменная" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "функция" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "макрос" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "перечисляемый тип" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "перечислитель" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "тип" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Добавлено в версии %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1973,346 +1950,423 @@ msgstr "Изменено в версии %s" msgid "Deprecated since version %s" msgstr "Не рекомендуется, начиная с версии %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:71 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:82 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Параметры шаблона" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Бросает исключение" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "класс" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "концепт" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (класс)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Аргументы" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Бросает исключение" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Результат" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Тип результата" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "функция" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "класс" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "модуль" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "повторяющаяся метка уравнения %s, также используется в %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Переменные" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (директива)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Исключение" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (роль)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "директива" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "роль" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Параметры" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "поле" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "переменная" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "макрос" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "перечисляемый тип" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "перечислитель" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "тип" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Параметры шаблона" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "концепт" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "исключение" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(использование не рекомендуется)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (директива)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (роль)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "директива" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "роль" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Переменные" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Исключение" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "переменная окружения; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "элемент словаря" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "токен грамматики" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "текст ссылки" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "переменная окружения" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "опция программы" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "документ" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Поиск" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2329,35 +2383,35 @@ msgstr "конфигурация изменена" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2381,39 +2435,39 @@ msgstr "" msgid "Symbols" msgstr "Символы" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2423,7 +2477,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2435,149 +2489,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2601,24 +2655,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2629,32 +2683,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2664,7 +2718,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2674,27 +2728,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[иллюстрация: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[иллюстрация]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2702,7 +2756,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2712,173 +2766,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[исходный код]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "План" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<<исходная запись>>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<Исходная запись>> находится в %s, строка %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "исходный элемент" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[документация]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Код модуля" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

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

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

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2886,112 +2945,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2999,25 +3058,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3091,99 +3150,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Именованные аргументы" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Пример" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Примеры" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Заметки" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Другие параметры" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Предупрждения" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Внимание" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Осторожно" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Опасно" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Ошибка" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Подсказка" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Важно" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Примечание" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "См.также" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Совет" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Предупреждение" @@ -3215,7 +3274,7 @@ msgid "Table of Contents" msgstr "Оглавление" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Поиск" @@ -3348,34 +3407,22 @@ msgstr "Следующий раздел" msgid "next chapter" msgstr "следующая глава" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Для работы поиска включите JavaScript в браузере." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "искать" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Результаты поиска" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "По вашему поиску не найдено ни одного документа. Проверьте, что все слова написаны без ошибок, и что вы выбрали достаточно категорий." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Быстрый поиск" @@ -3412,20 +3459,30 @@ msgstr "Изменения в API C" msgid "Other changes" msgstr "Другие изменения" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Результаты поиска" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "По вашему поиску не найдено ни одного документа. Проверьте, что все слова написаны без ошибок, и что вы выбрали достаточно категорий." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Идёт поиск" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Подготовка поиска…" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", в" @@ -3446,30 +3503,30 @@ msgstr "Развернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3481,13 +3538,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3514,90 +3571,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3620,27 +3677,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3657,13 +3714,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Сноски" @@ -3682,20 +3739,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[рисунок: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[рисунок]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index b47495fe466d08c286d334db984d288844e0f02b..779912294f9fa87668acad520bdae0638ebcfad9 100644 GIT binary patch delta 1007 zcmYMyPe@cz6vy#1z1K7|>XbHV&Gcs&i3X>M(T0p6BHZ)`qD>Hji>ysB1QArYuxXWx zpoOBLZ44o3qrteUToi#8L@okBBoGXWY?H2n!tW0b^tkVS-nsAoIrqNzJu{i9eQgOx zjjO`FpL;!`=>PR5FpCq;;dY$I-S`O`a25C9FN|Rjnl)h~sy*#-3Dd-IWuynPBo*0&jdF^kH4 z4k`ALN)s=l7G6TVUqMau19#zXRKI{qCa9E1GiuxcRR0_<@OcZU4R5l$8e{Dr5BgRi zy>zr`%wpc-^LUW>3LeF~*oISh7++%sS5XQ6brY=8LfnR(*n#@T`tT4A#5sQr7^fkR z&ruV7##8vyJLdTja>VD{Dr(}#n8jz_{tgSo-*7KBa|~Lr1C{7m)W3BT_u*gz=dX#M z(4Z4|g^CxEQ?d=D*dHqW3sJIFoJ7TGWV4pTb}S&pE>S6gK0JwcQ1ef_?~%RP@);hK z*_t;bIDf?{)DA1|MQkO$irT?F)B-~zAA&FSnQ$}GR4$gv#m;iJ>v*NByZ$oT9|_9G PO7&E1C{lkLKN4;M`ovg3 delta 1077 zcmYMyOK1~89LMoV6I0Xlp?zzLT`DW3CSr__XbXzyMYM_sQShSZAu3f8sFi{#LJ$gS z!4@CA^x&bFo}$?b2JsLOR78+?s$Fj?B3MM}LGk-511`J!+5gP!|35RkGqKOH{Kw|d zl;P;->f-ttQ1t(J9W*9F_y$+u2W-IwjN%V$!#}thTSCS(U>B;r&&K<3J@FuFTn5RP zH(4HPXc$3GGs>+A$FL43a4k;Tcn&$uJU108+xAzeiB+)?zhXTuV=acM7RE+w#Wsvm z-}LdI7j~jndJr|kqbmc9If+Ve&h}qIa++ZqkJ|nMs=zJO&P>|&85_^q_%SN~GqqFS zRCrLrcebO7n)xDfns3~ccnLLb8P)$6l_*N*8f-<4bFFdIL{g~t_M*lgz?XdHBbe8U z+i4}2aZulE6KZP*(7{7CzK9!$uVEbTV+U5y#RZIEkffSmw>6H<#Je$xhf)99^$7c~ z7pH0H#uum;KVdI^M-RiKIvezEO!EPpd`0z2^(s&E!n_m1{o zKid-;)?o#ecoDS|HOxkFC$d|nAL%mtQUAoCjZfJ4EV2pa0&c_{a+-VGG=WE$#xg4Z zuVeP1p8aOArUx~%xQ&n7_%v#TH>^|GPCScRz;jfAw|Acg-#1-#GDFVr`D`w8dB|~d z#qrSZKtn3AHJwQAa+2Hk>_``HhtC9p+qNW&OSLxxuA6gwZ_M`|_+G*HCjHX9?>%(< TQo%2kSK>L}8!wJTdPDyJboF@N diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index c55f8340e68..ca7845272c2 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://app.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:331 sphinx/theming.py:377 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "නිකුත් කිරීම" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "කේත ලේඛක:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "ලේඛක:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" +msgstr "%s වෙළුමේ වෙනස් කල" + +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "පරාමිතීන්" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "සාමාජික" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" +msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "විචල්‍යය" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "ක්‍රියාව" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "මැක්‍රෝ" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" +msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "වර්ගය" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" +msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "ක්‍රියාව" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" -msgstr "%s වෙළුමේ අලුත්" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "%s වෙළුමේ වෙනස් කල" +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" +msgstr "දත්ත" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "පරාමිතීන්" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "සාමාජික" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "විචල්‍යය" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "මැක්‍රෝ" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" -msgstr "දත්ත" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "වර්ගය" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate %s description of %s, other %s in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 -#, python-format -msgid "Invalid math_eqref_format: %r" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "විචල්‍ය" - -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "විචල්‍ය" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "සෙවුම් පිටුව" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "සංකේත" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "කිරීමට තිබෙන" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "දෝෂය" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "හැඟවීම" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "සටහන" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "මෙයද බලන්න" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "අනතුරු ඇඟවීම" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "සොයන්න" @@ -3342,34 +3401,22 @@ msgstr "ඊළඟ මාතෘකාව" msgid "next chapter" msgstr "ඊළඟ පරිච්ඡේදය" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "සොයන්න" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "සෙවුම් ප්‍රතිඵල" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "ඉක්මන් සෙවුම" @@ -3406,20 +3453,30 @@ msgstr "C API වෙනස්කම්" msgid "Other changes" msgstr "වෙනත් වෙනස්කම්" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "සෙවුම් ප්‍රතිඵල" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "සොයමින්..." -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "සෙවුම සූදානම් කරමින්...." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "අන්තර්ගතය" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 92a9aca8971b14caec8e1f16efd9f9beafba958c..1455bf5203aa320548e3c77fc1aa71ca448aabf1 100644 GIT binary patch delta 10496 zcmYM(33QFu`p5A%5)v7RL45Y#-x5T#mE%+uvmOO-0EXcVQC4oXd@ z#+quZ(z=8iYP@Yx1Z~w&%K!Vb-?jdC-PO;2_Ib~{_kQ-X_sQ*DHp64t19#`80FMtW z{xhYNWmQIxii-aKKeyv7YaXAKUTL-7*&VVjzkRT_IBk63+iF3!gK zSSiu6GO-)B#Ch1zvYggg8rA3sO|q=An2lc83}Y}CHL)=miSJ`o+=v>m7z6PfR=^VU z$LFZ``6pYJ4~C(hi^X8fLVw1$I?^adM?N}mBI7IOAIfX++~y+>T{ZEh`=Oq9$-3J<&=tEA~RVta7%E zPy>y^0Gy4y%36xy_#-aFo0yMp@bYZ@4V^(Ws%BVLZOlXm4o9tcp6w!3hE}4sW)n8R zZ|u+i!FXbiTE;}ILfjSEV{0txdz;Y@ccZrOSS|8jhsGT`wAXRWLMv^DLD&U(w>1PE zxE%F@Z_yu*V;EjR)y5OlK;cxH77&ekZ<1|ij3Azb{MY(0ll%wM_%D%)@H)PP-pr~3 z=3yBef!;U{mC|XpOEH&tJL-F0buFtO_QLYG6Jzlhs#yQRruZ0JVgqLuM~B8t48>wp z25zHPavw>K^)ISu(%Cp|MGMpfyCP#-gHbiH0-Inls)mB=nT54R#l!4)1x67&575wn zH&ACHBIt7=eML zMW&)M*B*Q5{P(9(m5y&vdv*~yDOL$;&mAmBE2_aiB5?!`$9dQcpP?qul#SK*JED$l ze^mc4OvFhTk6)nPdqOh4b;17NI(iWM^VXgigvvw#YKz8UO`M9sZkDwMD-!Q(Zcf7) z)Rx>p4fFt2Ly;{^CgV{9H^5kIg-#Y}70`GUU8t2uwB$qVfI5DQQ7b=gdly59%kz+o zL#4bSsyI8Lwk{uaOedf+F$^G-AEGzr5NN<$^uoTV z>K}|X(1|{{28ZBQq_C~1wq^qPsD+KiM7C@Zs`w7KGYdH9q@kHzMGf!(^}usf1}fy5 zV-$nw#2qjhr(-;RjY)VBJD_iSwiEMEnfMV^+;^}V`ty)7oQ@83cBe6r#za)nT}Iwz zWp%Wy&NvHMlywPXFySTh;tn{IxBzv`9-&s+xsy4D6HxJTWH+q?c7HiustMIbt_Y{q zod&nARfO7tA8|3B#g}n(7cLFOI1W>~nmzp--HF$sPR%BC;8sk>vlxuNd|6u@g~~uf z%*1@Gr}MvIOTC0r)#=LQk%yhAmJF z$wyxtidw)#)O$Ze)y_F|a^$U2d1iptsMPdDo!^C62fsq4@*3*J|DtNavyYijB9)eLsQ9RwnYCH1yzjR7w_LC~iWn_$X>6 zH!%R8VF*?jXfjY8wU-UBKE8sgiBC~mvISG{5PIN4)WAZ7QCspDHIcYi%!(UgDsfj#z_(E~!_05NV$|NR#WJ`Db!rZww%{r@#>c3Evxl1rH^)}Q15ux^ zM}6-P)K>V8(Eih?Pa_vQqZh8k7XxB>;ysvz$L;=SsI90_VE*7}jx~upqpsd*cK>En zQSL`=soO~N+fW5lh?|cj|4Q|EI#fK%F&R&yURY|BSxGV~<+-R8yoP%53{*<@qh5Fy zqtP+i+y~82Th<1(z`m&G)?szLJevHgO3RKh)gFnOX?@g0dZPAfHmaCbp)$4~RmJBq z5#87?nT+bsLtmVZ3HUzh0@{hy@IGqcAYb{~{V*bbN*WxCJ%y!{~=4 zsDYoLX6`-3tUMDn!KSDT472-Ps6F3{dhab%ao@*GjGbz>ybr$k`+pLR06v(3LHHr6 zYS-EEJ}ggs7WLc>RFOTw5Uj=`lz}W%Z8Su!a13f8vrsj$9{K&TwqPX;d!792gA5uz zn2mAR0<&-gI`B(WZ5+kQSd5y;J=99wr) zf4$&UI&>}w@eCiQ4e&&Se%8b+6{Jm3N_&;sDWZyQ2eY#cE95TGoe(} zi|V01Z;slc0&IozP!l+Z%4`W%z%oT<3qn!jWuPD9TkUCRhI#e_1sG2}2RGqn%)r4M z1!ZI@mccL31J`33errOoLY;;qSOf239ELA>vFBC}>ie^okbiw)8664uCAPrR zn1T@>nHT0_5OGgb4HTe`*C(jjIADK%0(DhiN1cKPsG5jaYPL2ClZZ2H2P`H3FRGJ{ zrhKp!E8$bDiNVXvjh2HU#7j^Ex=>rO*X}=xn$R!U5ler}Er{K41b&68fr#a1p~osxPop2U#AT=qT*pvMUSTeZmZ+lZh}qZ+^}>ayiLFMZ^jp+>PGcrk`NW*AuBa_t zg^73(v(V|Y(xj?6s+xzPE|i6+J^UCO<3ZFHJy)3&)r+#Nspz5e-itGn~H0+<@QPo<$$}uc1!YpBRUw)^a)+-%6n2ja^aI+aI-81*id6qXu-@vHMqM zi~O)I{XytQ2HRsr;=FbC6^?q}42;JG=!LsbTXzVZ8sGwr+IS6Bj1lYEPwa(?f5Prq zaf8{*VW^dF!e~5+5%>_RV9-WW0~zQ~+y=w2HFfezyD zQ3KpUt<0b6umZ-QGM0&YQ4{pUm+ZJFmLYx(!*L|)l)Q_|z^ACwwQdvn51?_F4i(9H z`-3~E%y_!Y&u|4)oR5Au6gA)^)XLt#BwUJ`&@r5f7f{Er*ViUPg{ZyXh_P(hIVTNG zz}jM77>Js2II3teQPrP=f!GRTFb|XQO-w)+DpQxRI=XK)7f>RO)pMvVdu&^2n~9xu zY3MlhK<(jVoPdk44+d;EH{eL@Nqhu5VDt`iAB;uq`AVFR`>-o^`NrHUYq1(}F>0I# zsACg$bRZXt z6^)u$b!?0+u@cTk2d=^w=l>v$dURYzo!{ua>@&WGdhrjoXKb&cQhW zvg3czLEPl9S;+v5B_4&!%pz2=?nfQhGpGswjw;&cn1adQasH!e^!v{Ip)dpEi8rEN zbRN5)#}TvlJ+T?_e$?k>zc(33M@_g3HpBufgBwt(-iqOP2tDzC*aUBW?=(NRiAT-K z$D;OrpB={>Ge0t;upj-qu{B2iV17(q!^XtlV-EWMXl}j^Scmu(48i57t=fhWcplr~ zBPR`|qWN)iuE(P?uoShzLl}kkP${lRrD-MEsJ-rn%HT-U07aOE+pq!th1!a=6Xu?2 zjv2%~urxa7(s0mNfGUd3sJ*_8-sp4Ed?6S$^ES4xqE6E!56H!&&1+}u_cK>^*z21fzpcu8+!KcmD8-as~ z6R|E9p^E#zn1KJHCKCUX-pl^Cp^-wzFigT_n2bNz@xQh;&zMZ~LT$}^s0r>s2Nq*D zypJB(_N>{;j_5-?2`l1T7>Y|UhViYhX;jAZsF^)Pr6}y2xeuanEb%B*hHhXGK1Ee? zzFPL*&0RxDm zFav9&CNu;ap%eXaFV?~nn2nwn&DP{#bK*`IkBcvof9?H#I@;m`OvIc^=6H<6I>dW0 z6Ca@_nsV8kmY%2uypB44E3r0S$GTYMin&+1qpE#6Ds!_j50_tYngO2Cp}o(%YR>N< z)Ulg_8ej!BzylbL?*B7;9*KIc5vJqIn1vr=LoCKP4E)8MmTc65I-wRc$4Nuy`T(jr zZ($S$|7wm~7FHtej@57!Y9$|F6e}US{b*Qb`f)VJv zO`{DB?`!74u2_}0HWy1bS|6Nc0+ICp{Ny(#~Sz!mcy-B9uJ`=@{=7uL!F9px6NtD zK|MDeV{ifLy*p4_b`Y}}-|{Fi4>UqQ;z6i^$6yG)jhf(c493l6x1TW@Z=;^8 zaK~Igv6w_$164ykF&4+57cN0(0gY8Ol)9k1rbseSGp&cJ))uI$ejQWs8}!8z)L#CB zDyHCjCdC=3f%>41*$mY8e?fh}${(gyI{ZQYHBdes$v6xXaVcuxqZp4Kf0~RW;#%Uy zxB>5=iu2>Yj6b6vamamBgfXZLI#KUkX!jpP-4l_2lYb4=^=~utd8kZmM|V7nn)wB+ zi6IZngqos?X&7qa3sK)YjP>yvCSdeKQ+(}FH828$@B>ta);MWsZ%(3SejD}0f3PgZ zJTgU;j5<~gQKw`PcEfKl7Xu%g3n(9bh>Nfieu7&0PSpKz)7I}F6KAK;(2P2v17AfQ zm)UmwB?b^5wc|^ul|KK+a{V0tSLMPh%`#kx&Fcmip6Xr0b)xrhH`gb9I=U5h?icQw z+wX3eYyD)Wo6pMw9Rr5;A3fR;Gpg`v`(W2+Q#!d7wsv-Ml{lAr6%Lpc=(_cGxO-vh zoOfL}<|LK!%ScSgNKDOeq@`!2WxAr~t#@?es5u9p>sn^*R2iHLkjPGm+rdz z-Fml8M`ybgmK;lPHU439Wa0dhgu;TN0N0q358Pa1?=E&L?Dt1sSNNY@%DQ$xnd@Ho N=JTS>*=_?${U0c6j5z=R delta 12231 zcmZwL30#$B+Q;z+Ma2adL{w0G#0?Y>cf}Rc+)-0=M-On2BXACL&H)8=PK!-0*@mTK zsbMygm6?OKsx7$Wl-aJ8T4T;@YMP~%H7)P&&;2;P^M0n!OyB!{mV3Fb>wX|MeP4Ui zUE!fqQQ;3+{But&%W8v5qt*NUpA(6ebszUm;zceOb+ar#&Q7+hLVO1!abSvN)xj~? z6({1oSdN3SeyU~l!%;XILpT(yH)$krA)-4EVKOi zo_6{jdzkA3u_@PY!IqeVt#Ao8!nLS{RALX^pEnkXBiupC*FwFcvGAFjhsF&q88Nf&;Ep%yfn^|7qJ*adCOLhU%@xDpki z3RG&g;1GP;xqluh59_L9TLz1#e>0L}%Z+;P35>*NQ7PQhm-zRmaf%DdbxSHlI~|NI za3r!wYc|?=KWc!Ts1U!3vG^{kHZGthYRI74Ks0LHc*hagmi|KIQENqi;vYlfH7=+K zkKrx&6E?#M11zg9&cgC#PjilSE%h}V$(oy}n zPX7VyKtHsLh9*3Y%E=eV;;dRESRoyZHqJ$b^pB{Btw5z>GiqVmu@=6LH{pKNcOZfS z(EVN*j-#+wm}QMePJYO`ZI~H&2XeuB2^FfZP&IJLF+9VBE*3T5JUov9)UnE9+g-2# zb-w~<<6p5Y)@D_*Jt}fTai-4yWE$CYS{*Lv8GSOd(~vLNrv3 zr!&nCuA)}@ z3!!c_6yi*@F@SDdiz>RGkhNITZn3PXxD^SG^&@t|kyFgT1$a08)u?0FoQJhjA9leC zr~e94HrD6nddNzeW>z#A`Sw@=)VFyjDh20o175*gy!Teinyx;U;y60W=^I!Z4`VnU zK^xykMd}JFRb6J76c51!o&Q-h`f+0!^3}9<<4pVxwSe(-R9v^Bj$algV=gwu2kK}u>u?mlhS3-? z&qS&%wxB-^`(ptrv|CXVyn?EY12`WqU|SqdCmt7K6I?mpIsbp=f_AhGJL7ItQJ%oo z80Inq#G!UF0NdeI%)lTLZR>eV!DiWJqM_J^eimv2OHd2GAC=0(*&!2(qg-gtg%hY8 zT}IW!b?l32Ip$ZU1vrNO<4*q~rqfTNGDl-BD&*TykvofuYn$`3X^NfcXJ9kT$3!egE%iG#c6X)VUo&OhT=#zN`6~cr<6VeRSPG_O+mtalKup9kPoPM1mv!Ha;{T$Rd>rplJ z0>uE_2;oZHt?|4!Bx|I27-#mjLFKJGkl5%psCKbTaEMdfY@X5xdWRQ&^M zCd4N6f5B9Y^gBg}ip)fe#O0Wb5BiC}zRj;XH?E+nGAv+nIuyImpMz<*9F_as*aJ^t zcWfFo0}exNqzD!Adr%vA5;bl$DxzV8OXH=K5dV%evbazO@5JV~61BsP&VyfL68*NN zrbtJjs(mi1_?Dm+vL2PHH&F{YjWHOu$P{raOrby2u_)x+cmx}9;|=VJN3kFNgbCPl zvDx`F)Xx5hTEGUU|03$S4^bQW0bAlP*c)4v8OLHY{SXe6YiX!R-gP{N8t4?Z$FOqq zW$S=?t`Iw50PEp89D$p$51w)Qu}e%*&qG!FLevI*sMIaRkvjj+(iqN#t2he#Ej8yi zgstg6ftv7DRMC8iaoBX331u>>CT5`)awqCEy@`771Lyt^PT&5c`2>%^M4kUBG+OcC zQq)Qx!v44cZTtWy;Z;;*M)FQ9=A+)b6DQ)MsL+0ms-dvk%;{)>P3gyDC+vkhN9 z7*xM2hIC$s(a?jFP@mcyRPn4rMPv)Ai2jP&;R)1EzD3nU%R6}o<54NQ19kmTY>1De zj`0pm$75(?)No=9HW7#h0H*mf&$cn9>(do7l&YryUdQKqC$BO>WjDm70Ior z_uoUE^PjO3ru@l_KLyv(&-)YcSL0VMD3lN1ZG00IqMvXMHeF#tTZCQcuS5;F6ZJtk zhFMs9rSo$hbs8SRczg>Lne!Nq;j7I3`XL(H;ZW>=c}{;7cBQ`)mD3Zb565-X#GO~0 z>*KLK{e0AdS2_L1P#>N*Fake8jei<7Zryv#^-vEQ3VAxJ$|s;!ya|(VFAl)7I1t;f zG1uo}J^FW}-oFpEku9iGaoF)RY6Jg5EwJUiCe{4Ja#`(;QopV{*Sk><^R~=A*U9Q$E*$55jP@_Sa0BXoc=I>HNmYoLFfMhjZ7{K zpb!#p1vbE^u@OFxs*P$?2(Mu~Y`xw%0PE17i8}Z5Q0F~>+R$>WkL$1@R$@!sjHksTFKM(jAzBU!hVK^Vgb4g{;XmRLzUA9&W)-_!MT~yQmkV zo-`pGh6=e4+u&VTvmjLQ?ZR647LLGoFcF(?GetNE!|6}Q)G+cthei)BtbWSmd@tTa z|1j3UNJ>@{Hb;dz3CH0$)WqxX5^h7KX#F#$hMqu0=3|_P=dm4*-EPKNh;5kPx`#$S zZo{q^^{hD!gHgw80@ladP`_xbLJjmO>dW>Mj>P+Rm~;J+)&D%`~|yUs9RCF-GPe4RqTk-yUlOK z12CTcbW}~0VpCj$`VehGE$F4)#9yI#(|O=HYQ^VJ*MCME8$E9(NWp0Ow_r0|fDNz= z_55zGZ=?es8e$k6@jxM8ai&5Q4`mH!4yp!)b%t}=*QqBoZ|GiVkG@% zQ4{V#?QB1$;^(LZHGYx*R={}dha0gieuS!p&=ne;$ywY>W&y)rHUmyWt#~e~h{{l> z;Vx{Bt5L^vGj_)VsN%hbN`?K3Io2a_8hsy@=s8r%2JWdbWX(1WYYFOjJ%U={UR;cy zVHQr^Yrcq8IE#M6eI_D#m_q*rjK_cCgBboQf3m}M*cmTj0=9U~%+nul($D`{G_>MP zsA{jqo_H2}VC?IrSjHoBTeDHewe=h3FP(Q_8U0hJRL!V1e~8S+aQbHIA~dq;YL&n zha57+Iu=!w(=eoCFvq!3fc5B?VkZ6(EAa@9N8g*~PpNybKmE(t2$K$*FJxcTM#f_+ z^rCipH>&t5u>*dB5%|kt;;$;M`*(Bhqj41dap=MdOvY=d1th#>s@#Vo=&wSB_Nddp zgf{(NZ<~}&MddyR70FeYgcluK9wGj!=8PleJWsgK;*0JHj`^s_JdNY= z3Tj8g-ZTBjaUA{2I3EYS&kq{hi1Y9(%)rqfm>+JdFou5U9U98zKd~joe`r?P7j+D0 z-~=qiG~AD!@ERs!+(%}IBT%{ZqC);4Y9lY9YTzSO1iwK=BKqT+-vdHcUm8QW@CR&; z&tVkq$KH4h>tLf}Cbv=8mwqo)?iXSMT#0&qEo$M19nWG*`gM*IEo_S|Fbkt~{)03W z;+2?;Z({=fh^o>ypO^)9!k+YVQ43v%UGQmag&&}H_O)}p@uw!&eNp32Mx}Z!Ho-?w ze?zdIrZE7cKQjx+#IE$0pce8M)WC;PDY$^C*ye;O(s8K%633@dk@y5voQ+SK1@=dq z{$!kvehh`v_&W{d@+daM>llsUr_773Q9194ZEyx^VI`;tt;bBP#1g!WicsF?Ce-Dq zV!j_0sr49#J3lA>Luee~f+lYCg_)ogYQR1?8keIcJc8QMWz;~i|KKMg_Cif?H#Woj zP&HJEio`C|g3jSE`~{ohkkcXaUnmn#o8NBlLgnUlycyp^MW)r4CifYr;}^sfJ%>6S z-(Y_ne8zm~N>K}a78SYUn1H|HP1ydQrik4k8p{2n*bP6%I#}y}Oz0wTF8z4a1WQr5 z-i6@)~HnXM@3)}lERSn3XREJ_z?9%=L;s6 z$=HW}Z`1?}aU8BdJ@+BD$4{{?{)_{$_SYt&Ls6+IL*@PuM&M_t8aaa*I{)9(n8}6y z7tN>gL7YSXJ50ohmrN)Zqaw5xyW$?y0?wi)uK$fWjw4YMmtaGzMn&oiqRHol5FzH#3f)35>kk*G*a z!fu$0H9!CFr_qE9n^7y<;q;H8j?Y;fhHb8x=jLK3`bDULD^R)Jgo?yT=YH#}=9ko= z*qrMVP_^a4Xe_%*{8h#Ga-lIkflYB2cEkf1jps2Of5TJ^zh;W97j~vU0hQYz7UMEh zBrjn-jQrj#v<0fDZB+Ho{GRytps|(4=15Y!3_P%o@S?PMR; zgcJwUkNnk~f^n!KEJZEkVQhhWP^ozzTjP(YjWqwwyw@ICV8|Lzqdqt8L>1v0)DAYH zj@J*4t*x+{pIQSklj{}O3s0ktSxi`1%|r>PNDM-Kh!#4oaeNN7zz@*Yljmr(<3fX4 zy1?o%3dcG9ER3fgsufmsq05yvO%~Z6uU+c)2RuHn-6>G<*@%8IcAz9D-_G%Q^E?ae zQdeP#JDpoqO-2ri8C>WI1Z`iQ9Vm9^c=9|scAlru9k7Ew+waaU@f7B!+G7@YeSUYY z?a8xKT(&20<5_oZ)#%xehE2B@xV>(_D;Tg-{S0OX@OXo6zt>e*Se9xJFA3UZz7oG3 z;9oiJd4ZC=JkMe~*T+O&Ur;Lxx>&YePqn8Mc#4bNxv5ph=gbY8VHdmnjN&e|7kPsD zcBWnI_vN?)0bX5{@AkXxVqYNO$u4x;i8Whr6`CE|39gc$FM+oT3+;eA$eZjbr??~~ z$5-MFCRHS7b!_eS>tacOmvh~Du9CuFx}6^^Dom;xn{_QV%@a&1_T&_l*+srwce1_6 z<@egIY#+N}MRt*giMiR)6{QxJB`Lv$z8sh4 z{(X!9yRlsXd&VKWjeCS^_jq(d=07v0ex|$JTU}Y?vMbshi3zVc9Zx=USIhC`zH;(tAE}fcn&;a4vxE!X#)Q~Hbow4`M^FNw-e2#sw)fGMZPbWgXpqP-?mA|=JahF z*_$?2y`6V?pjfj6?VBb|OR89Zs9VyFjqP;;z^?bNu@j5=PL%ozS_w(|2}g6{oR0l z-zIrN4w671Vs6OZ)_qC>7nPvLg0!<7ocJ;8dE|RX`?P1-}1#E;BCN zTEF6aMcW3>DI}Q{=PKeOYR;fK@z+{bZNIv>cHh$KUD@s&+e?sDrsUy2*WfH6*(RZ! qnf?3t7Nv}+=y-iy`#{ZkEcO*>xg=lp#+TG&l$30*dii>8t^Wn7cKbB| diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 7987c9adfa1..033acb866b9 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Slavko , 2013-2019,2021\n" "Language-Team: Slovak (http://app.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" @@ -40,104 +40,104 @@ msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" msgid "Running Sphinx v%s" msgstr "Spúšťanie Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemôže byť zostavený." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "vytváranie výstupnej zložky" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "pri nastavovaní rozšírenia %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho definíciu tak, aby to bola funkcia. Je to potrebné, aby sa conf.py mohol správať ako rozšírenie Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "hotovo" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "nedostupné pre zabudované správy" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "načítanie uloženého prostredia " -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "zostavenie %s, %s upozornenie/a." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "trieda uzla %r už je registrovaná, jej metódy (visitors) budú prepísané" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktíva %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,70 +158,75 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nemožno prepísať slovník nastavenia %r, ignorované (použite %r na nastavenie jednotlivých prvkov)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "neplatný počet %r pre konfiguračnú hodnotu %r, ignorované" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nemožno prepísať konfiguračné nastavenie %r s nepodporovaným typom, ignorované" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Neznáma konfiguračná hodnota: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Vo svojom konfiguračnom súbore máte chybu: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Konfiguračný súbor (alebo jeden z modulov, ktoré importuje) volal sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,291 +234,328 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Konfiguračná hodnota „source_suffix” očakáva reťazec, zoznam reťazcov alebo slovník, ale zadali ste „%r”." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Konfiguračná hodnota `{name}` má byť jedno z {candidates}, ale je zadané `{current}`." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}'; očakávané {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}', predvolene `{default.__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Od v2.0 Sphinx predvolene používa „index” ako root_doc. Prosím, pridajte „root_doc = 'contents'” do svojho conf.py." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Udalosť %r už existuje" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Neznáme meno udalosti %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Obsluha %r udalosti %r vyvolala výnimku" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "Rozšírenie %s je vyžadované nastavením needs_extensions, ale nie je načítané." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Tento projekt vyžaduje rozšírenie %s s verziou minimálne %s, a teda ho nemožno zostaviť s načítanou verziou (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Neznáme meno lexera Pygments %r" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "nájdených viacero súborov pre dokument \"%s\": %r\nNa zostavenie použite %r." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Trieda builder %s nemá atribút „name”" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r už existuje (v module %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder s menom %s nie je registrovaný ani dostupný cez vstupný bod" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Builder s menom %s nie je registrovaný" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "doména %s už je zaregistrovaná" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "doména %s ešte nie je zaregistrovaná" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Direktíva %r už je registrovaná v doméne %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Rola %r už je registrovaná v doméne %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Index %r už je registrovaný v doméne %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr " object_type %r už je registrovaný" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "crossref_type %r už je registrovaný" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r už je registrovaný" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser pre %r už je registrovaný" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Analyzátor pre %s nie je registrovaný" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Translator pre %r už existuje" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r už je registrovaný" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "rozšírenie %r bolo zlúčené so Sphinx od verzie %s; toto rozšírenie je ignorované." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Pôvodná výnimka:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "Nemožno importovať rozšírenie %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "rozšírenie %r nemá funkciu setup(); je to naozaj modul rozšírenia Sphinx?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Rozšírenie %s použité týmto projektom vyžaduje aspoň Sphinx v%s; takže ho nemožno zostaviť s touto verziou." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "rozšírenie %r vrátilo so svojej funkcie setup() nepodporovaný objekt; musí vrátiť None alebo slovník metadát" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "téma %r nemá nastavenie „theme”" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "téma %r nemá nastavenie „inherit”" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "nebola nájdená téma s menom %r, dedená v %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "nastavenie %s.%s nenájdené v žiadnom z nastavení témy" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "zadaná nepodporovaná voľba témy %r" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "súbor %r v ceste témy nie je platný súbor ZIP alebo neobsahuje tému" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "nebola nájdená téma smenom %r (chýbajúci theme.conf?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -529,8 +571,8 @@ msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s" msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "zápis výstupu…" @@ -579,7 +621,7 @@ msgstr "%d zdrojové súbory zadané v príkazovom riadku" msgid "targets for %d source files that are out of date" msgstr "ciele pre %d zdrojových súborov, ktoré sú zastarané" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "zostavovanie [%s]: " @@ -588,50 +630,50 @@ msgstr "zostavovanie [%s]: " msgid "looking for now-outdated files... " msgstr "hľadanie zastaraných súborov…" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d nájdené" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "nenájdené" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "ukladanie prostredia" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "kontrolovanie konzistencie" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "žiadne ciele nie sú zastarané." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "aktualizácia prostredia:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s pridané, %s zmenené, %s odstránené" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "čítanie zdrojov…" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "príprava dokumentov" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -640,36 +682,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "nájdená duplicitná položka Obsahu: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "kopírovanie obrázkov…" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "nemožno čítať súbor obrázku %r: jeho kopírovanie namiesto toho" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "nemožno kopírovať súbor obrázka %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "nemožno zapísať súbor obrázka %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Pillow nenájdené – kopírovanie súborov obrázkov" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "zapisovanie súboru mimetype…" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "zapisovanie súboru META-INF/container.xml…" @@ -677,470 +719,470 @@ msgstr "zapisovanie súboru META-INF/container.xml…" msgid "writing content.opf file..." msgstr "zapisovanie súboru content.opf..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "neznámy typ MIME pre %s, ignorovaný" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "zapisovanie súboru toc.ncx..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "zapisovanie súboru %s…" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Súbor prehľadu je v %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "žiadne zmeny vo verzii %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "zapisovanie súboru prehľadu…" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Zabudované funkcie" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "kopírovanie zdrojových súborov…" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "nemožno čítať %r na vytvorenie položky záznamu zmien" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "Zostavovač dummy negeneruje žiadne súbory." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Súbory ePub sú v %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "zapisovanie súboru nav.xhtml..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_language” (alebo „language”) nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "konfiguračná hodnota „epub_uid” má byť XML NAME pre EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_title” (alebo „html_title”) nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_author” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_contributor” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_description” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_publisher” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_copyright” (alebo „copyright”) nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „epub_identifier” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "neplatný css_file: %r, ignorovaný" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalógy správ sú v %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "čítanie šablón… " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "zapisovanie katalógov správ…" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Hľadajte akékoľvek chyby v predošlom výstupe alebo v %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "poškodený odkaz: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Manuálové stránky sú v %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "nebola nájdená konfiguračná voľba „man_pages”; manuálové stránky nebudú zapísané" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "zapisovanie" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "konfiguračná voľba „man_pages” odkazuje na neznámy dokument %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Stránky HTML sú v %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "zostavovanie spoločného dokumentu" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "zapisovanie dodatočných súborov" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Súbory Texinfo sú v %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nSpustite v tomto adresári 'make' na ich spustenie pomocou makeinfo\n(použite tu 'make info' aby to bolo spustené automaticky)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "nebola nájdená konfiguračná voľba „texinfo_documents”; dokumenty nebudú zapísané" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "konfiguračná voľba „texinfo_documents” odkazuje na neznámy dokument %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "spracovanie %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "riešenie odkazov…" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(v" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "kopírovanie podporných súborov Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "chyba zápisu súboru Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Textové súbory sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "chyba zápisu súboru %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Súbory XML sú v %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Súbory pseudo-XML sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "súbor info zostavenia je poškodený: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Stránky HTML sú v %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "Čítanie súboru zostavenia info zlyhalo: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Všeobecný index" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "ďalší" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "generovanie indexov" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "zapisovanie dodatočných stránok" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "kopírovanie súborov na stiahnutie…" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "nemožno kopírovať súbor na stiahnutie %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "kopírovanie statických súborov" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "nemožno kopírovať statický súbor %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "kopírovanie extra súborov" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "nemožno kopírovať extra súbor %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "Zápis súboru zostavenia info zlyhal: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "stránka %s vyhovuje dvom vzorom v html_sidebars: %r a %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "pri spracovaní stránky %s nastala chyba Unicode. Prosím, zaistite, že všetky konfiguračné hodnoty, ktoré obsahujú nieASCII hodnotu sú reťazce Unicode." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "generovanie inventára objektov…" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "generovanie indexu hľadania v %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "neplatné js_file: %r, ignorované" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Zdaný neznámy math_renderer %r." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "položka „html_extra_path entry” %r neexistuje" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "položka html_extra_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "položka „html_static_path” %r neexistuje" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "položka html_static_path %r je umiestnené vo vnútri výstupného adresára" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "súbor loga %r neexistuje" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "súbor favicon %r neexistuje" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Súbory LaTeX sú v %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nSpustite v tomto adresári 'make' na ich spustenie pomocou (pdf)latex\n(použite tu 'make latexpdf' aby to bolo spustené automaticky)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "nebola nájdená konfiguračná voľba „latex_documents”; dokmenty nebudú zapísané" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "konfiguračná voľba „latex_documents” odkazuje na neznámy dokument %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Vydanie" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "žiadna známa voľba Babel pre jazyk %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "kopírovanie podporných súborov Tex" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "kopírovanie podporných súborov Tex…" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "kopírovanie dodatočných súborov" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Neznámy konfiguračný kľúč: latex_elements[%r], ignorovaný." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Neznáma voľba témy: latex_theme_options[%r], ignorovaná." @@ -1155,15 +1197,15 @@ msgstr "%r nemá nastavenia „theme”" msgid "%r doesn't have \"%s\" setting" msgstr "téma %r nemá nastavenie „1%s”" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1222,8 +1264,8 @@ msgstr "Hlásenie o chybe možno vyplniť na ." msgstr "" @@ -1255,257 +1297,264 @@ msgid "path to output directory" msgstr "cesta k výstupnej zložke" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "zoznam špecifických súborov na zostavenie, ignorovaný ak je použité -a" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "všeobecné voľby" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "použitý zostavovač (predvolený: html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "zapísať všetky súbory (predvolene: zapísať len nové a zmenené súbory)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "nepoužívať uložené prostredie, vždy čítať všetky súbory" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "cesta uloženého prostredia a súbory doctree (predvolene: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "zostaviť paralelne s N procesmi možné (špeciálna hodnota „auto” nastaví N na počet CPU)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "cesta k adresáru s konfiguračným súborom (conf.py) (predvolene: rovnaké ako SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "vôbec nepoužiť konfiguračný súbor, len voľby -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "prepíše nastavenie konfiguračného súboru" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "pošle hodnotu do šablón HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "hnidopichný režim, upozorniť na všetky chýbajúce prepojenia" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "voľby výstupu konzoly" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "zvýšiť rozvláčnosť (možno opakovať)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "žiadny výstup, len upozornenia na stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "vôbec žiadny výstup, ani upozornenia" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "generovať farebný výstup (predvolene: automaticky detegovať)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "negenerovať farebný výstup (predvolene: automaticky detegovať)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "zapísať varovania (a chyby) do zadaného súboru" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "prepnúť upozornenia na chyby" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "s -W, pokračovať po upozornení" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "pri výnimke zobraziť úplné chybové hlásenie" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "pri výnimke spustiť Pdb" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "nemožno kombinovať voľbu -a a mená súborov" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "nemožno otvoriť súbor varovaní %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "argument voľby -D musí byť v tvare meno=hodnota" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "argument voľby -A musí byť v tvare meno=hodnota" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "automaticky vložiť dokumentačné reťazce z modulov" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "automaticky testovať kúsky kódu v blokoch dokumentačných reťazcov" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "prepojenie medzi dokumentáciou Sphinx rôznych modulov" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "písať položky „todo”, ktoré môžu byť zobrazené alebo skryté pri zostavení" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "zahrnúť math, spracované ako obrázky PNG alebo SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "zahrnúť math, spracované prehliadačom pomocou MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "podmienečné zahrnutie obsahu na základe konfiguračných volieb" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "zahrnúť odkazy na zdrojový kód dokumentovaných objektov Python" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "vytvoriť súbor .nojekyll na publikovanie dokumentu na GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Prosím, zadajte platnú cestu." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Prosím, zadajte nejaký text." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Prosím, zadajte jedno z 1%s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Prosím, zadajte buď 'y' alebo 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Prosím, zadajte príponu súboru, napr. '.rst' alebo '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Vitajte v nástroji Sphinx %s quickstart." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Zvolená cesta koreňa: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Zadajte cestu koreňa tejto dokumentácie." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Cesta koreňa dokumentácie" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Chyba: nájdený existujúci conf.py v zadanej ceste koreňa." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart neprepíše existujúce projekty Sphinx." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Prosím, zadajte novú cestu koreňa (alebo len Enter na skončenie)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Sú dve možnosti umiestnenia adresára zostavenia s výstupom Sphinx.\nMôžete použiť buď adresár „_build” v koreni alebo môžete mať oddelené\nadresáre „source” a „build” v ceste koreňa." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Oddeliť zdrojový a výstupný adresár (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "V koreňovom adresári budú vytvorená dva ďalšie adresáre; \"_templates\"\npre vlastné šablóny HTML a \"_static\" pre vlastné CSS a iné statické súbory\nMôžete zadať inú predponu (napr. „.”), ktorá nahradí podčiarkovník." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Predpona mena adresárov templates a static" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "Meno projektu bude na viacerých miestach zostavenej dokumentácie." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Názov projektu" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Meno(á) autora(ov)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1514,15 +1563,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx má predstavu o \"version\" a \"release\" softvéru. Každá\nverzia môže mať viacero vydaní. Napríklad, pre Python je verzia\nniečo ako 2.5 alebo 3.0, zatiaľčo vydanie je niečo ako 2.5.1\nalebo 3.0a1. Ak nepotrebuje dvojitú štruktúru, jednoducho nastavte\noboje na rovnakú hodnotu." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Verzia projektu" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Vydanie projektu" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1532,21 +1581,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Ak má byť dokumentácia písaná v inom ako Anglickom jazyku,\nmôžete tu zvoliť jazyk pomocou jeho kódu. Sphinx bude potom\nprekladať text, ktorý generuje, do tohoto jazyka.\n\nZoznam podporovaných jazykov nájdete na\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Jazyk projektu" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "Prípona mena zdrojových súborov. Zvyčajne to je buď „.txt”\nalebo „.rst”. Len súbory s touto príponou sú považované za dokumenty." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Prípona zdrojových súborov" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1554,91 +1603,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Jeden dokument je špeciálny v tom, že je považovaný za vrcholový uzol\n„stromu obsahu”, čiže je to koreň hierarchickej štruktúry dokumentov.\nBežne to je „index”, ale ak je Váš „index” vlastnou šablónou, môžete\npoužiť aj iné meno súboru." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Meno hlavného dokumentu (bez prípony)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Chyba: nájdený existujúci hlavný súbor %s v zadanej ceste koreňa." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart neprepíše existujúci súbor." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Prosím, zadajte nové meno súboru alebo premenujte existujúci súbor a stlačte Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Informuje, ktoré z nasledujúcich rozšírení Sphinx majú byť zapnuté:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Pozor: imgmath a mathjax nemožno zapnúť naraz. výber imgmath bol zrušený." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Súbory Makefile a príkazový súbor Windows môže byť pre Vás vygenerovaný\ntakže stačí spustiť napr. len `make html' namiesto priameho spúšťania sphinx-build." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Vytvoriť Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Vytvoriť príkazový súbor Windows? (y/n) " -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Vytváranie súboru %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Súbor %s už existuje, preskočené." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Dokončené: Počiatočná štruktúra adresára bola vytvorená." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Teraz môže vyplniť svoj hlavný súbor %s a vytvoriť ostatné zdrojové súbory\ndokumentácie. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Na zostavenie dokumentácie použite Makefile, napr.:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Na zostavenie dokumentácie použite príkaz sphinx-build, napr.:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "kde „builder” je jeden z podporovaných formátov, napr. html, latex alebo linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1648,135 +1697,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nGenereuje požadované súbory projektu Sphinx.\n\nsphinx-quickstart je interaktívny nástroj, ktorý kladie niekoľko otázok o Vašom\nprojekte a potom generuje kompletný adresár dokumentácie a vzorový\nMakefile, na použitie so sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "tichý režim" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "koreň projektu" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Voľby štruktúry" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "ak je zadané, oddeliť zdrojový a výstupný adresár" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "ak je zadané, vytvoriť výstupný adresár v zdrojovom" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "náhrada za bodku v _templates apod." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Základné voľby projektu" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "názov projektu" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "mená autorov" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "verzia projektu" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "vydanie projektu" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "jazyk dokumentácie" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "prípona zdrojových súborov" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "meno hlavného dokumentu" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "použiť epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Voľby rozšírenia" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "zapnúť rozšírenie %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "zapnúť konkrétne rozšírenia" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Vytvorenie Makefile a Batchfile" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "vytvoriť makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "nevytvoriť makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "vytvoriť batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "nevytvoriť batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "použiť režim make pre Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "nepoužiť režim make pre Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Šablóny projektu" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "adresár šablóny pre súbory šablóny" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "definovať premennú šablóny" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "bolo zadané „quiet”, ale nebol zadaný „project” alebo „author”." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Chyba: zadaná cesta nie je adresár alebo súbory sphinx už existujú." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart generuje len do prázdneho adresára. Prosím, zadajte novú cestu koreňa." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Neplatná premenná šablóny: %s" @@ -1827,47 +1876,47 @@ msgstr "Nemožno použiť „lineno-match” s rozdelenou množinou „lines”" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Riadok %r: žiadne riadky z vloženého súboru %r" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "strom obsahu obsahuje odkaz na vylúčený dokument %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "strom obsahu obsahuje odkaz na neexistujúci dokument %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor sekcie:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor modulu:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1882,82 +1931,10 @@ msgstr "voľba \":file:\" direktívy csv-table teraz rozpoznáva absolútnu cest msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametre" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Vracia" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Návratový typ" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "člen" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "premenná" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcia" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerátor" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "typ" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "parameter funkcie" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nové vo verzii %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1969,346 +1946,423 @@ msgstr "Zmenené vo verzii %s" msgid "Deprecated since version %s" msgstr "Zastarané od verzie %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "duplicitná citácia %s, ďalší výskyt v %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Citácia [%s] nie je odkazovaná." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Duplicitná deklarácia C++, definovaná aj v %s:%s.\nDeklarácia je '.. cpp:%s:: %s'." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parametre šablóny" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Vyvoláva" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "trieda" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "koncept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "parameter šablóny" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (trieda)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Vyvoláva" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Vracia" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Návratový typ" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcia" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "trieda" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribút" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "neplatný math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Premenné" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktíva)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Vyzdvihuje" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "%s (voľba direktívy)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rola)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktíva" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rola" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "duplicitný popis %s %s, ďalší výskyt v %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametre" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "člen" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "premenná" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerátor" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "typ" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "parameter funkcie" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parametre šablóny" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Duplicitná deklarácia C++, definovaná aj v %s:%s.\nDeklarácia je '.. cpp:%s:: %s'." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "koncept" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "parameter šablóny" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (vlastnosť %s)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "výnimka" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "vlastnosť" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "nájdený viac ako jeden cieľ krížového odkazu %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (zastarané)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktíva)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "%s (voľba direktívy)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rola)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktíva" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rola" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Premenné" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "duplicitný popis %s %s, ďalší výskyt v %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Vyzdvihuje" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "premenná prostredia; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Nesprávny popis voľby %r, má vyzerať ako „opt”, „-opt argumenty”, „--opt argumenty”, „/opt argumenty” alebo „+opt argumenty”" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s voľba príkazového riadka" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "voľba príkazového riadka" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "položke glosára musí predchádzať prázdny riadok" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "položky glosára nesmú byť oddelené prázdnymi riadkami" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "glosár vyzerá byť zle naformátovaný, skontrolujte odsadenie" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "termín glosára" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "jazykový token" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "menovka odkazu" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "premenná prostredia" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "voľba programu" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Index modulov" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Stránka hľadania" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "duplicitná menovka %s, ďalší výskyt v %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicitný %s popis %s, ďalší výskyt v %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig je vypnutý, :numref: je ignorované." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. Nie je priradené žiadne číslo: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "odkaz nemá popisok: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "neplatný numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "neplatný numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2325,35 +2379,35 @@ msgstr "zmenená konfigurácia" msgid "extensions changed" msgstr "zmenené rozšírenie" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "prostredie zostavenia nie je aktuálne" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "zdrojový adresár zmenený" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Toto prostredie nie je kompatibilné zo zvoleným zostavovačom, prosím, zvoľte iný adresár doctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Zlyhalo skenovanie dokumentov v %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Doména %r nie je zaregistrovaná" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "dokument nie je zahrnutý v žiadnom strome obsahu" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "nájdený na seba odkazujúci strom obsahu. Ignorované." @@ -2377,39 +2431,39 @@ msgstr "neznámy typ položky indexu %r" msgid "Symbols" msgstr "Symboly" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "zistený cirkulárny odkaz stromu obsahu, ignorované: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "strom obsahu obsahuje odkaz na dokument %r, ktorý nemá názov, odkaz nebude generovaný" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "súbor obrázku nemožno čítať: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr " Súbor obrázku %s nemožno čítať: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "súbor na stiahnutie nemožno čítať: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s už je priradené číslo sekcie (vnorený číslovaný strom obsahu?)" @@ -2419,7 +2473,7 @@ msgstr "%s už je priradené číslo sekcie (vnorený číslovaný strom obsahu? msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2431,149 +2485,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "cesta k dokumentovanému modulu" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "adresár umiestnenia výstupu" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "maximálna hĺbka submodulov, ktorá má byť zobrazená v obsahu (predvolene: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "prepísať existujúce súbory" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "nasledovať symbolické odkazy. Vhodné v kombinácii s collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "spustí skript bez vytvorenia súborov" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "umiestniť dokumentáciu každého modulu vo vlastnej stránke" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "zahrnúť ”_súkromné” moduly" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "meno súboru obsahu (predvolene: modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "nevytvárať súbor obsahu" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "vložiť dokumentáciu modulu pred dokumentáciou submodulu" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpretovať cesty modulov v zmysle implicitnej špecifikácie menných priestorov PEP-0420" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "prípona súboru (predvolene: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "generovať úplný projekt pomocou sphinx-quickstart" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "pripojiť module_path do sys.path, použité pri --full" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "meno projektu (predvolene: meno koreňového modulu)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "autor(i) projektu, použité pri --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "verzia projektu, použité pri --full" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "vydanie projektu, použité pri --full, predvolene --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "voľby rozšírenia" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s nie je adresár." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "neplatný regulárny výraz %r v %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "neplatný regulárny výraz %r v coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "nedokumentované API C: %s [%s] v súbore %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "modul %s nemožno importovať: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "nedokumentovaná funkcia Python: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "nedokumentovaná trieda Python: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "nedokumentovaná metóda Python: %s :: %s :: %s" @@ -2597,24 +2651,24 @@ msgstr "„%s” nie je platná voľba pyversion" msgid "invalid TestCode type" msgstr "neplatný typ TestCode" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2625,32 +2679,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Direktíva graphviz nemôže mať naraz argumenty content a filename" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Externý súbor Graphviz %r nebol nájdený alebo zlyhalo jeho čítanie" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorovaná direktíva „graphviz” bez obsahu." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "príkaz dot %r nemožno spustiť (nutný kvôli výstupu graphviz), skontrolujte nastavenie graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2660,7 +2714,7 @@ msgid "" "%r" msgstr "dot skončil chybou:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2670,27 +2724,27 @@ msgid "" "%r" msgstr "dot nevytvoril výstupný súbor:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format musí byť „png” alebo „svg”, ale je %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "kód dot %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2698,7 +2752,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2708,173 +2762,178 @@ msgid "" "%r" msgstr "convert skončil chybou:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "príkaz convert %r nemožno spustiť, skontrolujte nastavenie image_converter" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Nemožno spustiť príkaz LaTeX %r (potrebný na zobrazenie math), skontrolujte nastavenia imgmath_latex" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "zobrazený latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "vnorený latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "inventár intersphinx bol presunutý: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "načítanie inventára intersphinx z %s..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "nastali problémy s niektorými inventármi, ale boli nájdené funkčné alternatívy:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "nemožno získať žiadne inventáre kvôli týmto problémom:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(v %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikátor intersphinx %rnie je raťzec, ignorované" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Zlyhalo čítanie intersphinx_mapping[%s], ignorované: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[zdroj]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "ToDo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "Nájdená položka TODO: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> je umiestnená v %s, riadok %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "pôvodná položka" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "zvýrazňovanie syntaxe kódu modulu... " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumenty]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Kód modulu" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Zdrojový kód %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Prehľad: kód modulu" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

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

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "chyba formátovania argumentov %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2882,112 +2941,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "„::” v automodule nedáva zmysel" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ má byť zoznam reťazcov, nie %r (v module %s) -- ignorované __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "chýba atribút %s objektu %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Zlyhalo spracovanie predvolenej hodnoty argumentu %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Autosummary s popiskom vyžaduje voľbu :toctree: , ignorované." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2995,26 +3054,26 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "zlyhalo spracovanie mena %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary interne generuje súbory .rst. Ale Váš source_suffix neobsahuje .rst. Preskočené." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3087,99 +3146,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumenty kľúčových slov" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Príklad" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Príklady" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Poznámky" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Ostatné parametre" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Varovania" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "neplatná hodnota množiny (chýba koncová zátvorka): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "neplatná hodnota množiny (chýba začiatočná zátvorka): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "neplatná textová konštanta (chýba koncová úvodzovka): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "neplatná textová konštanta (chýba začiatočná úvodzovka): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Upozornenie" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Nebezpečné" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Dôležité" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Viď aj" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Varovanie" @@ -3211,7 +3270,7 @@ msgid "Table of Contents" msgstr "Obsah" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Hľadať" @@ -3344,34 +3403,22 @@ msgstr "Ďalšia téma" msgid "next chapter" msgstr "ďalšia kapitola" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Prosím, na zapnutie funkcie hľadania,aktivujte\nJavaScript ." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Hľadanie viacerých slov vracia len zhody, ktoré obsahujú\n všetky slová." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "hľadať" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Výsledky hľadania" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Vášmu hľadaniu nezodpovedá žiadny dokument. Prosím, skontrolujte, že všetky zadané slová sú správne napísané a že ste zvolili vhodné kategórie." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Rýchle hľadanie" @@ -3408,20 +3455,30 @@ msgstr "Zmeny API C" msgid "Other changes" msgstr "Ostatné zmeny" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Výsledky hľadania" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Vášmu hľadaniu nezodpovedá žiadny dokument. Prosím, skontrolujte, že všetky zadané slová sú správne napísané a že ste zvolili vhodné kategórie." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Hľadanie" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Príprava hľadania..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", v " @@ -3442,30 +3499,30 @@ msgstr "Rozbaliť bočný panel" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Poznámka pod čiarou [%s] nie je odkazovaná." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Poznámka pod čiarou [#] nie je odkazovaná." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3477,13 +3534,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3510,90 +3567,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "%r cieľ odkazu nenájdený: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "Nemožno získať vzdialený obrázok: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "Nemožno získať vzdialený obrázok: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Neznámy formát obrázku: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "nedekódovateľné zdrojové znaky, nahradené „?”: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "preskočené" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "zlyhalo" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "neznáma direktíva alebo meno role: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "neznámy typ uzla: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "chyba čítania: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "chyba zápisu: %s: %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Neplatný formát dátumu. Použije jednoduché úvodzovky, ak ho chcete priamo vo výstupe: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "strom obsahu obsahuje neexistujúci súbor %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "predvolená rola %s nenájdená" @@ -3616,27 +3673,27 @@ msgstr "Žiadne ID nie je priradené uzlu %s" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Nemožno získať veľkosť obrázku. voľba :scale: je ignorovaná." @@ -3653,13 +3710,13 @@ msgstr "príliš veľké :maxdepth:, ignorované." msgid "document title is not a single Text node" msgstr "názov dokumentu nie je jeden uzol Text" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Poznámky pod čiarou" @@ -3678,20 +3735,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[obrázok: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[obrázok]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "titulok nie je vo vnútri figure." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "neimplementovaný typ uzla: %r" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 99459e28d4d3392b39943a1346430f19df0048ba..698e340983906536473980a5bdfacd0af987886c 100644 GIT binary patch delta 1622 zcmYk+OGwmF6vy$aqn0yH`6xA0(lkv?^D$Bxx-g6uMGK+DBxD7>BQmi-Vj}5bLqQ8S zxu{J^fkjP05M_kY!h*yK#E>3Tw9qihAX57N#MEJH@8tP&Zl33^;m8FR#ade$e-)tNAoUY7WSe7eTFRQUZ598a4C*s zJo~#pG&E4VC<8BQ;XG78t1%WgSbrnN(GQ~L?Lbv#KPrGD<{8xd9?Zi#xDba?34c(Z z{oSNpm_jFyB5qqm8uZ+OdC)EG@%x1My9xZsAJQL3b-A$VTaj?IrPJ*@i$TPBVOvS z()Dvehi?!S$VcRGxZkJ=$&A*(xEza732Zi-P#XtPf$Tz6VlQfb8!C~LsKhS$ zsJ|At#f2q!7gg#Z)B>aUBZk9*T4=WvlPN1Ik3~J#N%BPLW%z7jjx7GSV z)FC|>qM=OBB6HnUOvOIbhEGu$zr^S>#9I1esPXCSt^f-7iJlGAdUdG7xD9ov525CF zq5==2Uc*o~4OO7eypO8HBh*4~Py;9JegbK!??=sBf!cT#GQ`!OHf%&?*o;c(I2Pdr z)FZx!{*K-Zy4+=$wEJ8FXis55dD6<|9m z;8Uo#;Jo#3VD$aJO+yo(U@i`#O85m;!Wp}t$q7^B%TR%=MEzq~i#j7gvjw%@9`i7= zgln_==d6Db3-#JvqoE0pQO|Y&RqA)B_j)2NQj#zm8>vmq_V@#36@jwKKyFoaZPl8{ W?xb*xCs1Aynevx=B9$pWWB&o-&WvgR delta 1671 zcmYM!OGs2v9LMpaqvLaQe3g!wV^|tA=4cPIhnQu8Q42vgi3LTBl!J+uAr3@~O0tbc z1{E$O$%J4c7YX4mC=kk8^dfB$E;1}CMYO&@Inbc3F~(v!?!zkEzJyAw2l+Dtd}-bwdTiG1b6266sf5$q6IkZPn<6p#6 ze+76$he|k&I)q&zR00*qP*aWCQ3Gm6O}G~WsPXqP zAD^Hq_1^Z+qEqkx0vF2sFY1}blBO1Lp$=g>>i%YAh$%r;i%I=Vs)r_$51~sXHaLQ z*V=~~f7?2UgfzprLj#}MjtSK3H-(xok9x)ns8YKrhu-hJ^svXd5}AD78))%%oI2MQ z2)1}PwuLj|aviQxUvZhwztijAR=&L~T$$Jt;V3EchbLV{4tKC4=\n" "Language-Team: Slovenian (http://app.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Vgrajeni deli" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (v " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Splošni abecedni seznam" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "naprej" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Abecedni seznam" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Izdaja" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Avtor sekcije: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Avtor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 +#, python-format +msgid "Changed in version %s" +msgstr "Spremenjeno v verziji %s" + +#: sphinx/domains/changeset.py:25 #, python-format -msgid "%s (C %s)" +msgid "Deprecated since version %s" +msgstr "Zastarelo od verzije %s" + +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametri" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Vrne" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" +msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Vrne tip" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" +msgstr "%s() (%s metoda)" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "član" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "%s() (razred)" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funkcija" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" +msgstr "%s (%s atribut)" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Vrne" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Vrne tip" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" +msgstr "%s (modul)" + +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funkcija" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "tip" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "razred" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" -msgstr "Novo v verziji %s" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "atribut" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "Spremenjeno v verziji %s" +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "modul" -#: sphinx/domains/changeset.py:25 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "Deprecated since version %s" -msgstr "Zastarelo od verzije %s" +msgid "duplicate %s description of %s, other %s in %s" +msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/math.py:63 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:213 #, python-format -msgid "%s (C++ %s)" +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "razred" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" -msgstr "%s() (vgrajene funkcije)" +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" -msgstr "%s() (%s metoda)" +msgid "%s (C %s)" +msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" -msgstr "%s() (razred)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametri" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" -msgstr "%s (%s atribut)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "član" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" -msgstr "%s (modul)" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" -msgstr "atribut" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" -msgstr "modul" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "tip" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Sproži izjemo" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "izjema" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (zastarelo)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Sproži izjemo" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "okoljska spremenljivka; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "okoljska spremenljivka" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Iskalnik" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Previdno" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Nevarno" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Napaka" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Nasvet" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Pomembno" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Opomba" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Poglej Tudi" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Nasvet" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Opozorilo" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Išči" @@ -3341,34 +3400,22 @@ msgstr "Naslednja tema" msgid "next chapter" msgstr "naslednje poglavje" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "išči" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Rezultati Iskanja" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Hitro iskanje" @@ -3405,20 +3452,30 @@ msgstr "C API spremembe" msgid "Other changes" msgstr "Ostale spremembe" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Rezultati Iskanja" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Opombe" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 1e02038589b..e915d486522 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -1,21 +1,21 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2023. +# FIRST AUTHOR , 2024. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 7.2.2\n" +"Project-Id-Version: Sphinx 7.3.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-16 21:54+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" #: sphinx/application.py:157 #, python-format @@ -36,104 +36,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with" " this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,71 +154,76 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called " "sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but " "`{current}` is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it" " should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes" +" are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -575,7 +617,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -584,50 +626,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -636,36 +678,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -673,476 +715,476 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "" "conf value \"epub_language\" (or \"language\") should not be empty for " "EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "" "conf value \"epub_title\" (or \"html_title\") should not be empty for " "EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "" "conf value \"epub_copyright\" (or \"copyright\")should not be empty for " "EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected " "in configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1157,15 +1199,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1224,8 +1266,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1261,7 +1303,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is" +" specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1269,214 +1313,220 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number " +"of CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\"" -" will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: " +"OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you " @@ -1484,11 +1534,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; " "\"_templates\"\n" @@ -1498,23 +1548,23 @@ msgid "" "underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1523,15 +1573,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1542,21 +1592,21 @@ msgid "" "language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1564,36 +1614,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root " "path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has" " been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that " "you\n" @@ -1601,29 +1651,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other " @@ -1631,26 +1681,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1661,136 +1711,136 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "" "\"quiet\" is specified, but any of \"project\" or \"author\" is not " "specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a " "new root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1841,47 +1891,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1896,433 +1946,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2339,35 +2394,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose" " another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2391,39 +2446,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no " "link will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2433,7 +2488,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and " @@ -2448,148 +2503,148 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2613,24 +2668,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "====================== slowest reading durations =======================" msgstr "" @@ -2639,32 +2694,32 @@ msgstr "" msgid "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2674,7 +2729,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2684,27 +2739,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' " @@ -2714,7 +2769,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2724,166 +2779,171 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the " "imgmath_%s setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had " "working alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following " @@ -2891,7 +2951,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2899,111 +2959,111 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3011,24 +3071,24 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does " +"autosummary generates .rst files internally. But your source_suffix does " "not contain .rst. Skipped." msgstr "" @@ -3106,99 +3166,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3230,7 +3290,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3363,34 +3423,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3427,19 +3475,29 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3460,29 +3518,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3494,13 +3552,13 @@ msgid "" " {1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3527,91 +3585,91 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role " "is not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to " "output it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' " "instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3634,27 +3692,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3671,12 +3729,12 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3694,20 +3752,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.js b/sphinx/locale/sq/LC_MESSAGES/sphinx.js index 4fb03bca471..063220b7fac 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.js @@ -2,7 +2,7 @@ Documentation.addTranslations({ "locale": "sq", "messages": { "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", - "© %(copyright_prefix)s %(copyright)s.": "", + "© %(copyright_prefix)s %(copyright)s.": "© %(copyright_prefix)s %(copyright)s.", ", in ": ", n\u00eb ", "About these documents": "Mbi k\u00ebto dokumente", "Automatically generated list of changes in version %(version)s": "List\u00eb ndryshime n\u00eb versionin %(version)s e prodhuar automatikisht", diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index d211329723e4432989fcfd8814d93d409331c8a8..1cf9abf598976f56185708c94178666a8d2ce452 100644 GIT binary patch delta 14404 zcma*tcX(7){>Sk<5Nha<(BUQ_kVq0rLJLKt89LGwkTN8b%#dUz%uK+bG6E_pmX%PX zihx*H3x=W#VnGyLWMNT2MPLzkEwCbrZ4rO(&z#Gm{`_Noe0-gA=H64j=X=f!JbrRE zX7i6RkrNGKmRkICtdeE5z~k|%UHxZux@Fz%vaB`u5YM#fU|Hw*cxxxi8c6&4&XyIV z{#mAF72%{T%c_n0unHc*Yw$Qeh}F7SR&QK}-7G6&y+slO#iMSMN;EPxt zU&mzpD{7)&V{5EKFGDc{6L1b{;MLd=*JFL$j`eUKs^1SVmhr7mDCohjFdi#+HxD+$ zI@H^vjoGMcK3{-isBc8|^MhmE9;V(FHG$sP7)M|e#<%h*)WQgABKKn( zT!#wXUTlu%o%UMUmh}?#PMC>bq9)Y3C*j5RsEK5vBC!zJE$actSMYl3Ut>fw>Cwxw z8sH7s5%aJ)E=6t47F>=$;dETg2FBq<)P!UESQfiswMHAqqarigaULp?i%?s+68YEK z(1-Zz!PC@I@T_ATiO`CAALL(aGXK$wYf#Cx3ANW-Q8{r0wem}-iN*A_Eb`52hBl5w zy;p+Tg1OiXAL<)1N%S-g8sHt&gbt%R{@Ahdb(YnVdMc78*7c}8j-Zlt8IH!6P&rbo zpJi3WR#+30Q4#IvI1EQn_eLn_#T_^eYxcLSx>$&9@mACxuEzoRBeb3V5Qn=R;x+S}2nl}^J-7)F9*&BkfC6Lp$e3^C7Lk1;y`lPF}mcnCG%65^_r zZp9k-iBms^Rn);SlVpjG-BA%6fto-$et}P5EnGa@MC4J_=WpS?_z_NGe9J>7D7jv9 zJc-()pK$`#9cd!tL*>RI)aR>E$M+dj*6+ne_z~(jpLeW0$~+&B`aA^{ncf)Disw=A z<73FSTlH=*Garw2spn!WhMe{Yrc=KkQ}8cX6F+hMx6}S3cA`Cz3|G#K#d=tbF*tWL z@t;Ux0SyZ62~;ke!8AOJ@oY`gF=pl+$C?fXVr@PjkD5RpR>ucWkywVB(4Vm_?m#8; z3G`vYILqpci^dUu^1|9pLl#yaZ*riw<78BbZ+BdZWz?TR?Pa?g&9Ul)fF)~Wvzq0okgx;L2)vrsSOpgI_bT1h@CGBZ&Fl%cldA*X#6YAZLO z2H1mD@d!4;k5SKGz&dytIY?HdHW{XyX*??1gGi!Vx1k2!hnmP?REW=DJf6e$7{mUl z?DF$L47m}5L1m8^H6CR~BZcoLIz{;N#on~#Q6R1VyVqwskw zLDw`B+8`!SUyQohwxYJ~DB5@lJ=oH1Cb|GQ!PW^Ji|Nx%WapzMZ~$9JD11v{AvVh8 zLcrCiko|z|utlD!4?rcW7uEg(Cg6wI8!uru%w`tRt;ChoZ$mz^8s}RU>1N%Av+zBP zRHiVrz?{dCXj31H?_nt_v_rgR&*!3YWho}&7Sw?6VK1!ZGg~znHGvIS4WGd(xD9oz zccOCYGavC+HvdS&+gNvo>EHvrk9sB<)dhE>Ui=m{frKKH-MulE`T*2Gqn!FpPCXB+ z(_Vzyic(yJZ=iBwR59__MKHJ6bhHH%F9%3PB@un{)H5m*C#SPMfq z4e!7-{0FN4IstA`ybiUX$B}%tK8jGtqR^d88;-@8f;;hgJcF80+DsGb>o9u$u{-S# zp^oD|)I?5VGJcL)K;59((sZm#eT3r_ROBLl3T-LO!8Z69HpMql9h^d~^fI=_rXf~= zJy6H-R!qku*a~C9=I415YT|uSNjeTS;n}EMcpiyZ#M(}wAq{&_dw3L;R41`3HZHZS zo;U&r<9$y3Jan+&7e}HZG9UHaYE)!i!X|hWwes_*h14xGIg^BqsdvRjI092K7q!I?U~irO?G)GL=jWQ0CKC=t;2NBO+1L}8Uy zZ#R$Mm(*`Y^|Ngr9cgCo(V)Hi37cb``R2iEa0vAUsOJu#BK9q6?`teD1136-KyB3= zY>i7$Te20q<8IV3{~pO-YhdI~6S|$)fQENb$LSPS#X5JHmByixsUu#8Iam|#L#<>f zDneWFTKoicT9WQI&ljU2_8e;K-a&13_rXmzSACa zj|q8WtWEnc)QvY0GjX9)--*4ce}>A5w)dJZul~qHB32=V6h2suop3KI%fCl;*zP`a zfs941bQWrhmZDa)1vS8a)ZW)zWLDS}$5StG+>Hu--2LWHT)9|9=YKl|?fouP1P-D? z)cOH)UPqx$!5qgwIc~z1dJna-4>3A%R1UOz&`kI`RH&z6TbzvvxE9+pzV#}FR6L96 z82^xQ0P2Mx4#X8$3s2%Tcow^1<3E|NhreGTNVW7qu6FcYBT`SE!&=~bxJ5+9DV`FrqB2b1| zI2RjX1!^JtP`UGO%*Bh?ROf%fDw8}R)B{T~7FVP8>PgJTgQz5mU2U?uA!;HWQ4{Hp zTJa30z7%hyz6<+cqcvvbW3V>$MOZ`Ue+31FbOWk`gV+)OgDo*_ty#ek)PN<(?pO;P zn?GtoTjBUADuRvIncsNn*qr)(s0D4p_ILoNFuwH@h0ZwPG4qS(e(XYh54OS|kx*Gp z)|(J_Mt$B5wME6K2+Ttz?UPP@KWahWpeE32gE{xvs0sANh>k%K1?|yF)Pt{L0v>m~ zj9QVs(X@BPcqdJ;`TIoz|f{!?EK~4M})I|S@E%1`_dDACM1UsYp8HSqB)F+6)3bScA z;^OBtZpQql2wNo{-psM1UiDc9#kl9p-(oL(-uwY2ev3KJk6~5%*@f+J50ZD*mpB^l zdBOaS_y}*L-nPQD&y7$>q~Q?Oz;7KdqxPu!Rx>~rDj7#&5R0)5p28|vWt&-9EY_vo z3UxnZp!)5Ju{aR5;2W?RMtl_NQ@9iL;xbIeO-}oM)ctS*wb!4ca^?b-p}pPQbSqI? zvJ*AHd#HZTqLTMAYD=2zFvqV8Hq`m=PeCEO5tXeG)C8W!3_OT63H>kFfqKoC%u2Gc z8udXq3rC=~U@!K^{f_niV*YAoEH|%DTj2Moy>IlI`HPBvsEDjZO=!DQe;GBA_fh@1UN^s{+vCmD@5DRt zAFmUCtu%j+c`%I1=Cyb|Zp3kT7TwtI4KvY=s8GI(3h@!V4o{$x(B5k!9EAgL zI;y`Xupj=sH)8&v(f3XB+ixXmZ$C#p(B>_Zlm*y}`eN*kf5RNCzRz6UH((FyccLb; z8}*%{zttE9>8O6^U=7@cisUO13Oy;DLuGgBJLb!00&4H?Lv^?kwI#<xIKz+yj_Gd!+nblf}DG175&uu@Xn18umjCGz2w) z>8Mc7Lmi_xF@_F5#8~Pl|7O1bzr^TP9ONj|-UAoo8BD_2hoVNTRTOkwUctHeJ}NY0 z|88!y`KZsAVoThN&G2p1#LhVNOOA~Xo4xOhHlGhh?fDE$z*kZC#c3R&^FQG|^ONgI ztiuN{VNKkJipXK?gr8tHjC;$CY0}^Lf873IltYpA@$*yiEdQKOR)*AM0aqtJ`-Z+ef z)Du25H{t^r(aOH0pwPDb$k-DV;t9A3!>A-`e%yq%3;L-K!xp#`6^Uc02!4h(e($t5 z`Pf7_1>4Zx1GRNiJ|_MRD9oZkE4&xAk~P=}pTKzBg-Wi&SQSrVYy7A4dDRo9y(Ma* zZBP^HgX(7l-iW!_5_h7K`-2n2e;S2<(4c|)oisBYh8l1(DrtO}fs3#<{sr&AeVBuT zPnn1<#x&~BV1TXs5VgP|r_F$q(WdS}jdyp1LVXHx>z2CU&R37Q5n6%)&aKnn?9WtvnYe;XLevk&h|dOrga;`P)k@!$dsiSnprv zCs!uw!kCC{Z~=z#N%UjO&rFE#$2{t1a3l`?+&sSmlc?{;^>`YmFurxy7v}CigF5$h zzBFGRy)cKm*Qsy8w$wky{up!C9J?H>PJKQe!bPZsOg?A++WiogQE&Ti^V~XA#Gk@8 zI{!N<{6xbkRA@i?$|OfQzy(!E>CDm3Oh5Tr; zrt#k!Q1us3$EmW*72Vr0I700>8C{iJ(E+ETLcSgw;uqK#FJmHJTiF%8Ij5tNGBTgS zI0~y#A-v!`kj|I7UKoywPzg52C76QGqeA)t#^blx0%NO~=TcDb4ZyDG#s2sx*2Pb- zj?Vu#6uQt*sj4e_e7a*R>itn6oQ~R($FUo}gFUfQHS>HQyq5Z4R7CE@A$Sb6g-O+o zBT+eVD=IP%M(YtmMInubZD`|Z)bXlZ!xjC@;#%03x(79ZO;`_4U>1IbnqV9Ll%f?6 z#$+tUX;_ZC@mth_Dq>yHAGzOQ9mcmVQ3zpdEmt%uV7Py;orZOlRC% zcB1b7v#9J(=1;8pd;;ddp*`h=oOMMD1!wRgALmHU=Zf@X;L}whNK`(AXb@T#i z#>cQ1{)D>ux-~TI1F#46e7qUgp)Qu6aSV=aWESuw_Mv_Vn_#^-SM=L86}8|y<059S zkI8v)P0fpWm`MFTREN*tb@(=F0y3h10l&34LqSv5$12pyRX%wWn{P2KvFVQA< zaSUy&nqaoB9qRt*hdS17tbz}sBDn;$;2qdQ-~ZoGPOz+IStt~B!< zkc4`#Yg)t$ZA^iAW;qCtFU0f>t&fb)&gazXMjGe%t*E^|g8tbul&QV7@KWQO7736}jbDf^VXd zw_8V(bhl%4i&5jei^~4vs4b5)>13|Rp=i@^A8OAwV?#WIyYW+e1vhp!1LtL$5I=%S z-gj{#oVeg$Pe9!(Zd59x7sfv~fP_BHMuK?>kgd*3WiXeQ^*@*7yr4biq$i--6A1 zIyV_=Mg33{n28GQ1E>gXLM81xPW=?>n8oxm*`A6TcqpnpA6w%hv}#`O@q2>qif~#& zt<<(jox1kuX(y-T21?3;z5;J}YDv(O@4F>6^y|jdQ2BG+<13!(-oX`{5-17#0)BT< zs$E|0>(n@XcF-60q`QlXY+uL@m3VS}`94ox#nB#jSE`?v=gG5uetVWD7~&;6xng3k zMfD@Ofjo~j%;zt(!vQ<&<-I%x_50NEZ`(aHOWps!)$4KR`TPaHebiU%F8E!qVfXZ+ z-#2-J#c{uVF&xMZ2R)vObHlf~$}2|R>IznL7*)4w!{WfK-_1T$(R2L!G1-Y>ucz3P zQBqb=?D2;~Q$yjhB2S_n@`S_8$}TPqh3)Ac+ige3&#-fR{&2RPm>fzhkDYWb5@gA| zZzoPNp$ttD+X6B2vauWBLN z9rR?|$-nEdT{J$?4fp6Z+X<&L(tqPvabePi+U1pJw0~j7QJ2e8akTLDO65QKJ5+7w z4Hp-+t4I$dRBN5+qhO2pgAZX{AO=g*Sw#Prq z7Yz8ddF2n6H*Pw0z~IpxGMpzusaBpZ=*cA%W##KK;>+7EsTY^Rbls&z?BbY_<3{%% zs5eq8F3tY5Q8Q-XnaUfilR-RY2R*m=Lg9)N_y1JMm0j_{LkC=~as&Q+UqNZmOfcV9 z$4KB->+YCN5sswi7?ymFggkDF!({6%GUX~=UWW6kE47d)04?+*Hv z!pt@t3>4W{`hW1T+4a)%-M*sqfIoe+iyv{ZM^A(d(@pZ-Ht_b&wt_q@>YWrvG*=!dPN+@&(!yZ=ewN=Y? z7lupSLAPD9XEP_{^c^co?VzuiY15iv541yGeL|dzO37LOp3N+m|9JIso_Eh?TI}?z zcb64?#33%+nvS_ie zG~YMJS6n{)K#R!lpO_J_3xj34kbe6n?a|!Wv-yuc;u7%`{lQ0Nc9^^DkKQMGVBp~K5y}!&2zH#N^(d;&OA}y6&b7B*R96?UUYnBb5uP%&KFG3=HV4r zcIC=Cd5wLJz7`#S^8fUbr`W9y3%PWIB*~u51raSG81#g_fgm^E)dxb}QpUGSNFR4l zxxfYGe0t?w?ht>0I!t4_xjv@zo0)3)2_xeOJ{c_+8mE#LiB_llRl`r0*Q&l7>5&&^QkqnH3ImH6JJ zBX=n`2=~hz_Lg~q2|E_ru6JE^87EKczSC&e=wo6XyEB1uE c%cp0$LQQ^u+o##H+;hBnfgPV_y5?5;KdBYAt^fc4 delta 12825 zcmZwNcX(9Qy2tT7ArNW^JqaZ{5Fmjh^iB*Nqy!9I>X1wdq%kw0Sq2dl8wjHYQA9Wj zDk^G#&=e`^u^=KM7NlcE1yoQGyx-rf?c@35p68zXS!>VUd#&}p?^-kDIh+0nKYJlO zaH4MbqZa>pE6lQ*;DCne{rjJSWXrn8Wm$!|oO^yvv8*5YcyW8n8pw5T2mVWcdq>ME zz_y(%s}`=p%D4gB;ET8nk6{|-bhfN+mKCs`p)rID$1xpScCoDH=)r2Z6szJ&Y>7{x zCb}2n@B|LS8yJs6yPAOuupWIc*1>x)3Rj`t`#jcQe5;&>ZrpbaO z{a0}Z{ZFwIKHS4h61F2fsiS(OFbZFQIZ@kGE;1Jx~+siNo=x$wJ5bFoXWHsONsg z={UHrW!1*#0yJ9D*pABGNgROZaR|2QXR6zW(e(GABJde%C8vET&KaaRzG^Gg(aAZ+fW0Z#}vGQZ83SEDZUBVn*M{>9Je^v zk2(DsgDi`3vQn`H=A$P55XR%9=JSA6K_iX}m(j+$gH3Kap52hnkhQ!OHX}qKa&qV<{2@ z>jBh@Kf>?v9BTU>8fGGL9QAqlaLc+6qj3_hN7dF1$0j345#w7uX-vf7sL*Uc6~}*3 z6Zj0Z!k_;G`dEX00_u8uOu;lv#93G!AHjf%WUX`IRp*A? zs3JL!s)0tM%yw#z3T0os6$harwGJb2BPQc!Y)Gh&V}1I+++v=u$`+_aKL$0C)|te= zDveQG&`KwwW>$=?Z~>|~*I_=M!;Y9SnyrU-q4xj#sK{7jj5g||>*F{9=hH7irRIB# z#2aIX{}dXv#+nJt!YKN8p+dJ3YvWq1i<_PPK1`thG3td^QTNvvXP%EnEhGsQna-$` z^mh6~P!k>%prIF+U=_R@>*M{X2iBryx(O*RuXE!Qq%$#q9VHj z8{%qgi?5>I`xVZ@z;`q_6|J!o%tRhR?bnT%LJr?Y)yN-Is8&*g#A|}}Py-~QKJS2v zM1NE zQK5Q>ri}wDtqb@OgHsBKe`gvyxxnda{fvp2R%m`Q<)9|?GAiWzu>oGg?pUYDq-ZE=B5rJn zvv4}DKrQ4lHp8f5bDp$wOb^hg!3QI;6;8qgT!b;W5%q$-s1={YIQ$d)Vk}!lRX-V1 zumUyEd2E8=v&{nHF`j-`)Wj#CY9p|MMok)JsQvp4DyQ2~D}EEZ;_uiC+j-4yn1$+Z z#h!QxhhVbLq^J}J)8C98@v37Rzd6vRAdwGP1vFIU>rgY^?(~mhfBF|tFKAzCB9eu= z?+#RCR%0}7N3HxY*29Zf7sJ_ejj$2c$9AX`4?z9?vQ#r;nIXVioe?l7N^zzOshq2BW)YGQw)Qe@vr{2SBg ze5bi_6b_~TJnF_@Q8|kxOwrg5HQ*3OKgQ618sl&$Dg|F)cRYt9u<1g+8F3aWa;H(X z@ykMP(6*^^mpR!wqjK8|m7{Uk7mKhuzJkqg7b+58U^-S?WOl{P*q43~^`4`s)Lq1e z7=O3f72Pp|{=xta<@yk6MxUWl@&jssYtHpHi%m$=uol<7n2Zat6Tam1Ph%SW$R(yG zhGT2``KXDkK&5COcEG?7G}_T3;AzKgjvruCJ%~+E-&CQA zqiSFTYQnjwP~U^Ca1Clf2T&9K8k4Z@14=#l?;UDb)=bm`t8gIhL7j}1A2i#uE_S1z zhRv}Q6LA%4VtY}MI_Z3V4YlHC51Cp@K<%2|jW?1CMan|>Zvr~eX$<8}={slE)trf-&m`r~xDguiz1)oAi=mXS*enU;5=SuV3z?H;bH{?4PR$?Um zZK&&Sq4xbxs2N8D&AzUQHvNG(3Ug2qsz4R#7pUic!;u*Ih$*_MSe3pPqwuyzh`(0$ zAQx)kYp4mliCWPiRD}LQO{m(VCPE!i*XLmyT!MP>E7$>dplam@R76@lW>%h#b?Fbq z1~?@^qaF>PbKzdBO@9sQ#+OjF@h0j(`UVw=zp*ohmzfi?2WlZ1sM_&k7T$(R*-2FG z{Na4wc$N9x5ok`MH6Ns6PaKCTq7|rZ_Bd)H+fWmE7q#MxPQUTv=GSdMyou|pu^WDl zifEnH=17i1MKlTZ{5Wi{{eKq?ZJ*arEBFXC;1y)DR<$RL>rkQX@uYDUDuiorGM1x4 z9ks?RC>iy>G1wLt;8fgz9kKFL`e8%hrUxRK=_{kw`)9 zf-z2i9%^N4Q4@I&E92Lw30y$!is+}!#0FvG02c~qC^t(TUqG$w1E+rm8`2M7XNs&b zYTyLafJ2iPM!D8q02T_rG7WJMz*a$y%{2o7b@k{C%e&pci&l3M%!q`3=*>+r*{{p8P zF5P7QSp4UU<{u>Yy=3-v{g+L3x5L)FxGR!&Ybs{qH5`f=n@v$Zj=Fvco8y32Oflv< z&VGgXD>t`sAr?1cQ{0DMJcS83`c;$5d8n1$iM4SB>Ks^y)$nDkf!k3lKY)7gajb(^ zQO{L-&D20lfQCLu$Le?s>L8hnDi#mU#~|8RtK6g_6*a(M)brC&p`VRP$pcsmpTl~% z4HdEXP`lzXreYv^3j-7K!Pt%qnOn^Y7NKfl8R|fJ4Ey66$J024e#>oU;JZ-+t-+r7 zDr)5yFcTvxEbBwO73X2n_R#$SYdsA;unoK5B~&O|?=W`22K0NOCUgsGA`?-OT7ydA z2Gnl&7?tbmI0)^XCK9=*(3fHhT!JIC|DUI!6<)?W|w*KEvOvdf%WlzY>aDB z-wC@=6FY}>@q%;xZ`AHe+-QQcwrbcpQvVa4bHHZoGy8tzgQVCY1M}RF8a@6Ls#To{6T zu_IPLU{0zu>`Q+x>dRvX4#%&tCw6+v)JPF(x6H#{xB*qnXRtliecR-|Kk9v>Q77Z0 zZwJf@w{StBK8WFX9>?MLI2HT8V+MR0W9Wa0D!$)vgo~O%MRNGNrie>X#kL94aTiA5 zHPkqj-ZK+u9H23P3q4WWNBwYK7(^W;tKK)?^Uq)?75D?e&cV}|ffEjypGX@qlKytAj_+V?{1`jn8SIAj zKQa*+j*8G&)P2R+0|S_bJFqogMRrxdiaTsVlZ> zBW63^f{I)YcESb7i>;SY_wB-J_zAYd6F3?pKhdA($^Q%*Be-w@XJOBy=49J|9q5OD zYQ7V?I*vhw(2E=JA=HXHA2Yio1B>W;unB&Gio_*UBwe4GqdW?0GrrY*JeP1CL@AJdJVqEjGlepPTD(s0p@0O{5R%`B4}cPs2l_DZY-X z(l2p3o<$8f;0rUs4Ag+rP&G3PQ}H3Jg}ZSfzK7b*!@e|;dIXc{Z^mL$cpSB`;a?Gd z4LI#96OvrifJ?Csu0-AV4Bm}@6eBtr%f*JMn&o}X5-K^<{uWDQTP9iEimCMX~H2m6@S1a z9D2@dLqE2qzaAB#4+GAHM(52$`eT1Sn29~`Wz=r?7Abt|5^5#;zczo}?)HuOeefXa zzAE3E$koOK`tkTD4njq$?{}sa0vJa>@Hma;GG$T3NBLNd{vp)<{~T2V z=TI-ah%uP@gQ@l*NTFLEoQ-K0Ohh*0VEUOqn!hKm#+KUuhiT}ASFt8m`pK*$3Tx4i zK~11FMqme2XnWvOxC%#Lx1UYUm!Ky02I~30P`jb}MN?z(sOs+*lKhXSF^~%d*ce|! z4fG*K;-{F0=dlfDTryu$^RbZri>Q^wUM6ig1IOV(oPi0ynB3osx%9VUEH?d>Nie?E zorccr+i(D`KuzRRRAeq=D&9clKIJ#_WwZ`E&_9maC6QN*@u&ehqjtqeY=;kG3*3#Z z@e~GBBvr4Ps!YKt^e5sXtiZn5^LO*W?bww5GZ>Hi9M54t`c?ig2hPo?(2qjhKNS_x z+fk`mjKgr>ALM@&jYvv#I!;6N-^7tv=bFj28#8nrHNo0{nE?w?p??MI;qTZ7YhE`+ zJpxtbB^ZMb<5+wFd!luN`0IvVH_QW*P$9Y#m4fw{h;LvleuE7$>~B-;F{t~xVpq&W zZQuK_HXcOP&{x<6FJN_SZn;7~K=}RV3WaVsDizDI8*af~dI0r6qRSQfA<+rj()T&8 zMdki|R0K{q{mZD6uyUBovausp#nCtcCu1KBY^9+AuV56WR&s^@u#k?LkRKJ1$C3SN zy^hoIEWUvQ__dDoo>sgQy#8 zM7ToV`@OLf{ZiED&tndLgDS#|s; ztruu$d%cMo_-Bkmn|~H*#eGoQFb9N@iDAa!@O`cY635!CcF>z+!fS&!fKic zC!!)U6l*fRb+7ZmBiMufHk^zXaU71QfUI%Y+QsA|u^ zR=5)N{0_&zun+z8x@O>os7P$V=J-Wjm-+kubuQ?jiK%B^FbN0Ie+qS^p2sX4Ro@lb zzgtids@}jAI#_a1p)baIe>NVyuoDFHo0; zUeq0RCQm{Qun}#139I0TsH#7T>DZ>JEA+KH6IDCgQ3Je#QFsUy$y2BzZqdvX@d8x; zLnJi;t7V+CQdEfNq7I&Q$N^!!jf%iE?2fUvxjq_|>!qlp_5^mspHSySe7r04tv3zz z`EsYf7Ms#PgyGu%Khn@lFQW$P(%cpLjW-6h-FBctbp}JS`{;2yVqKyTpT6zcrTER{lmGB7aYw;MWChE2}yP^xK1}5Wd%)%Hv zii*t7sGn#J63xouP{o*vs;NBG?}07Y1oxp1q?3v4|1LECT?%xCdt^2h6}7QcQ?FsOnvf zI#M^GB2*>S9`p6`~lPiFJT+3-_e{W>8OwwqV8LYIuQd~ zY1E`~7**{jP}?V>lga5oROm)xCT5{tv<>y5!`KIJ;1o>n>ZUm!ua7HsOJDHETkdrE z$_p}US1DgH;p6b&`YGR*Z=JTLRcR{JgZtgDi z7dPjrf&$y;@$;m=*v={`P01=QE%GM?BfZ_j^ZbPc<-@)45#?p`ceu(=-}XiQu-xL{ zlS`t@FF*WMm@B#bqu__G;MBfJ!8Jz(rXnJXM60d z0=LgcFX*1yu)Nh{qg}&tioLc!k5AlLdEDzMnv?G>E-LgC`E7Smww+y^<@b6#c20f) zt4YlEV$YVk#+L`5%?zv6DW!e)ln&kO4xM{;=^nhivBcFW znDyL^N*z->lxIKRI5PNAMQr(jiu+wvlI^1Xo9tliow5HpzoSz5_1!Nt2!8o-wep!q zF1TXG@R8Ru(;d3UDHV!_Vi|jMGsRN*(~5}lBVVnlT>j44C|7xtuea7tDVoVc1^GTd z%yN7E9>SjYPwC8}9`3VQ|Hc=&Cb4CFDQFUH;K;ZNf(KoNg(kWU})Z zntIC4qe6YWZ-&=XlU=jcBYi!)&MbVq z-2Hp|N&$^lJkt|eN2p+_S3>$vwR)26S*2ck|0Z9artPr{ON+9(kT|En<8_{o2In`nN-S!-&$`ctWilWc`KLu<#i|1|r;FH%Tn_|9kZFsecqROs>u(AnN zT`ej`R&{+AUC}SzRa~h%Z^-3!-ux^k!jydZMKj$6`3s8e!WpcXMEJ=@4x6foTC!(z zKl98juJ|dz6%kfuw{|sZSnM;`id5Kzo>a3f%Iddv*$tBIQrqt(8~ZoqmXgz4H@l%C zr?u;#E5O1%xh6M-GdHz} z-y_!l4C4Ry4Kqr;`DIg*T(?G<&u5j|yrwAI<1dTv;i_MDJ;D_moo}nIW@=L8?cXg^ zu`S89sd{kYmRgbjY#Yn(DRkSxkz1No%<1fUF+4oS?e*wY^=f#0dC44kyrr;gOb=IT d*?)Styiw!1=3bCTLQ6_nUQtC#PuHDc{|C(emwW&K diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 318011a1afa..5fdf73f9c65 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -1,21 +1,21 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: -# Besnik Bleta , 2021-2023 +# Besnik Bleta , 2021-2024 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Besnik Bleta , 2021-2023\n" +"Last-Translator: Besnik Bleta , 2021-2024\n" "Language-Team: Albanian (http://app.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -38,104 +38,104 @@ msgstr "Drejtoria burim dhe drejtoria vendmbërritje s’mund të jenë identike msgid "Running Sphinx v%s" msgstr "Po xhirohet Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ky projekt lyp të paktën Sphinx v%s, ndaj s’mund të montohet me këtë version." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "po krijohet drejtori përfundimesh" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "teksa ujdiset zgjerimi %s:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funksion Python që mund të thirret. Ju lutemi, ndryshojeni përcaktimin e tij që ta bëni një funksion që mund të thirret. Kjo është e nevojshme që conf.py të sillet si një zgjerim Sphinx." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "u bë" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, 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:376 +#: sphinx/application.py:372 #, 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:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, 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:695 +#: sphinx/application.py:689 #, 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:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, 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:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, 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:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ 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:1299 +#: sphinx/application.py:1293 #, 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:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "U gjet vlerë e pavlefshme formësimi: 'language = Asnjë'. Përditësojeni formësimin tuaj me një kod të vlefshëm gjuhe. Përkohësisht po përdoret 'en' (anglisht)." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "s’mund të anashkalohet rregullim formësimi fjalorthi %r, po shpërfillet (për të ujdisur elemente individuale, përdorni %r)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "numër %r i pavlefshëm për vlerë formësimi %r, po shpërfillet" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "s’mund të anashkalohet rregullim formësimi %r me një lloj të pambuluar, po shpërfillet" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "vlerë e panjohur formësimi %r te anashkalimi, po shpërfillet" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "S’ka vlerë të tillë formësimi: %s" +msgid "No such config value: %r" +msgstr "S’ka vlerë të tillë formësimi: %r" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ka një gabim sintakse te kartela juaj e formësimit: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Kartela e formësimit (ose një nga modulet që ajo importon) thirri sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,291 +232,328 @@ msgid "" "%s" msgstr "Ka një gabim të programueshëm te kartela juaj e formësimit:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Vlera e formësimit `source_suffix' pret një varg, një listë vargjesh, ose një fjalor. Por është dhënë `%r'." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Ndarja %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Vlera e formësimit `{name}` duhet të jetë një nga {candidates}, por është dhënë `{current}`." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}'; pritej {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}', si parazgjedhje merr `{default.__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "s’u gjet primary_domain %r, po shpërfillet." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "Që prej v2.0, Sphinx përdor \"index\" për root_doc, si parazgjedhje. Ju lutemi, shtoni \"root_doc = 'contents'\" te conf.py juaj." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Emër i panjohur akti: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "Trajtuesi %r për aktin %r u përgjigj me një përjashtim" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "Zgjerimi %s është i domosdoshëm për needs_extensions settings, por s’është ngarkuar." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Ky projekt lyp zgjerimin %s të paktën nën versionin %s dhe prandaj s’mund të montohet me versionin e ngarkuar (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "u gjetën shumë kartela për dokumentin \"%s\": %r\nPërdorni %r për montimin." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "U shpërfill dokument i palexueshëm %r." -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa %s e montuesit nuk ka atribut \"name\"" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Montuesi %r ekziston tashmë (te moduli %s)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Emër %s montuesi jo i regjistruar ose i passhëm përmes pike hyrjeje" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Emër montuesi %s jo i regjistruar" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "përkatësi %s e regjistruar tashmë" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "përkatësi %s ende e paregjistruar" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Direktiva %r është e regjistruar tashmë te përkatësia %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Roli %r është i regjistruar tashmë te përkatësia %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Treguesi %r është i regjistruar tashmë te përkatësia %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "object_type %r është i regjistruar tashmë" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "crossref_type %r është i regjistruar tashmë" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r është i regjistruar tashmë" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser për %r është i regjistruar tashmë" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "Përtypës burimesh për %s jo i regjistruar" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Përkthyesi për %r ekziston tashmë" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs për add_node() duhet të jetë një çift funksioni (visit, depart): %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r tashmë i regjistruar" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "vizatuesi i formulave matematikore %s është i regjistruar tashmë" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "zgjerimi %r qe shkrirë me Sphinx-in që me versionin %s; ky zgjerim është shpërfillur." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Përjashtimi origjinal:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "S’u importua dot zgjerimi %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "zgjerimi %r s’ka funksion setup(); a është vërtet një modul zgjerimi Sphinx-i?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Zgjerimi %s i përdorur nga ky projekt lyp të paktën Sphinx v%s; prandaj s’mund të montohet me këtë version." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "zgjerimi %r u përgjigj me një objekt të pambuluar prej funksionit të vet setup(); duhet të përgjigjet me Asnjë ose një fjalorth tejtëdhënash" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "numër PEP i pavlefshëm %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "numër RFC i pavlefshëm %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "tema %r s’ka rregullimin \"theme\"" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "tema %r s’ka rregullimin \"inherit\"" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "s’u gjet temë e emërtuar %r, u trashëgua nga %r" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "rregullimi %s.%s nuk haset në asnjë prej formësimeve temash ku u kërkua" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "është dhënë mundësi teme %r e pambuluar" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "kartela %r te shteg teme s’është kartelë zip e vlefshme ose nuk përmban temë" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "s’u gjet temë e emërtuar %r (mungon theme.toml?)" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "Tema %r ka trashëgimi rrethore" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "s’u gjet temë e emërtuar %r (mos mungon theme.conf?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "Tema %r trashëgon nga %r, e cila s’është temë e ngarkuar. Temat e ngarkuara janë: %s" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "Tema %r ka shumë paraardhës" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "s’u gjet kartelë formësimi teme në %r" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "tema %r s’ka tabelën “theme”" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "Tabela “[theme]” e temës %r s’është tabelë" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "Tema %r duhet të përcaktojë rregullimin “theme.inherit”" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "Tablea “[options]” e temës %r s’është tabelë" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "Rregullimi “theme.pygments_style” duhet të jetë një tabelë. Ndihmëz: “%s”" #: sphinx/builders/__init__.py:183 #, python-format @@ -527,8 +569,8 @@ msgstr "s’u gjet figurë e përshtatshme për montuesin %s: %s" msgid "building [mo]: " msgstr "po montohet [mo]: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "po shkruhet përfundim… " @@ -577,7 +619,7 @@ msgstr "kartela burim %d dhënë te rresht urdhrash" msgid "targets for %d source files that are out of date" msgstr "objektiva për kartela burim %d që janë të papërditësuara" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "po montohet [%s]: " @@ -586,50 +628,50 @@ msgstr "po montohet [%s]: " msgid "looking for now-outdated files... " msgstr "po shihet për kartela të sapovjetruara… " -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "U gjet %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "s’u gjet gjë" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "po kontrollohet njëtrajtshmëria" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "s’ka objektiva të vjetruar." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "po përditësohet mjedisi: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s të shtuar, %s të ndryshuar, %s të hequr" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "po lexohen burime… " -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "po përgatiten dokumente" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "u gjet zë TeL i përsëdytur: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "po kopjohen figura… " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format 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:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "s’kopjohet dot kartelë figure %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "s’shkruhet dot kartelë figure %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "S’u gjet Pillow - po kopjohen kartela figurë" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "po shkruhet kartelë llojesh MIME…" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "po shkruhet kartelë META-INF/container.xml…" @@ -675,470 +717,470 @@ msgstr "po shkruhet kartelë META-INF/container.xml…" msgid "writing content.opf file..." msgstr "po shkruhet kartelë content.opf…" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "lloj MIME i panjohur për %s, po shpërfillet" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "po shkruhet kartelë toc.ncx…" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "po shkruhet kartelë %s…" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Kartela përmbledhje gjendet te %(outdir)s." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "s’ka ndryshime në version %s." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "po shkruhet kartelë përmbledhje…" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Të brendshme" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Shkallë moduli" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "po kopjohen kartela burim…" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "s’u lexua dot %r për krijim regjistrimi ndryshimesh" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "Montuesi provë nuk prodhon kartela." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Kartela ePub gjendet te %(outdir)s." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "po shkruhet kartelë nav.xhtml…" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_language\" (ose \"language\") s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "vlera e formësimit \"epub_uid\" duhet të jetë XML NAME për EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_title\" (ose \"html_title\") s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_author\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_contributor\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_description\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_publisher\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_copyright\" (ose \"copyright\") s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "vlera e formësimit \"epub_identifier\" s’duhet të jetë e zbrazët për EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 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:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalogët e mesazheve gjenden te %(outdir)s." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "objektiva për kartela gjedhe %d" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "po lexohen gjedhe… " -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "po shkruhen katalogë mesazhesh… " -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "lidhje e dëmtuar: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, 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:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Faqet e doracakut gjenden në %(outdir)s." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 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:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "po shkruhet" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, 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" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "Faqja HTML gjenden në %(outdir)s." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "po montohet dokument njësh" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "po shkruhen kartela shtesë" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Kartelat Texinfo gjenden në %(outdir)s." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nXhironi 'make' te ajo drejtori, që të xhirohen këto përmes makeinfo-s\n(përdorni këtu 'make info' që kjo të kryhet automatikisht)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_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/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format 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:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "po përpunohet %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "po shquhen referencat…" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (në " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "po kopjohen kartela mbulimi Texinfo" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "gabim në shkrim kartele Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Kartelat tekst gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "gabim në shkrim kartele %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "Kartelat XML gjenden në %(outdir)s." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Kartelat pseudo-XML gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, 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:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "Faqet HTML gjenden në %(outdir)s." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, 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:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Tregues i Përgjithshëm" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "tregues" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "pasuesi" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "i mëparshmi" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "po prodhohen tregues" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "po shkruhen faqe shtesë" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "po kopjohen kartela të shkarkueshme… " -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "s’kopjohet dot kartelë e shkarkueshme %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "po kopjohen kartela statike" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "s’kopjohet dot kartelë statike %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "po kopjohen kartela ekstra" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "s’kopjohet dot kartelë ekstra %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, 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:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, 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:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, 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:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 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:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "U dha math_renderer %r i panjohur." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, 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:1255 +#: sphinx/builders/html/__init__.py:1253 #, 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:1264 +#: sphinx/builders/html/__init__.py:1262 #, 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:1268 +#: sphinx/builders/html/__init__.py:1266 #, 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:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "kartela stemë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "kartela favikonë %r s’ekziston" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "HTML 4 s’mbulohet më nga Sphinx-i. (U pikas “html4_writer=True” te mundësi formësimi)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Dokumentim i %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Kartelat LaTeX gjenden në %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 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:158 +#: sphinx/builders/latex/__init__.py:160 #, 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:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Tregues" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Hedhje Në Qarkullim" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, 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:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "po kopjohen kartela mbulimi TeX" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "po kopjohen kartela mbulimi TeX…" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "po kopjohen kartela shtesë" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, 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:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "Mundësi e panjohur teme: latex_theme_options[%r], u shpërfill." @@ -1153,15 +1195,15 @@ msgstr "%r s’ka rregullimin \"theme\"" msgid "%r doesn't have \"%s\" setting" msgstr "%r s’ka rregullimin \"%s\"" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "S’u arrit të merrej një “docname”!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "S’u arrit të merrej një “docname” për burimin {source!r}!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "S’u gjet poshtëshënim për nyjë reference të dhënë %r" @@ -1220,8 +1262,8 @@ msgstr "Një njoftim të mete mund të depozitohet te gjurmuesi në ." msgstr "Për më tepër hollësi, vizitoni ." @@ -1253,257 +1295,264 @@ msgid "path to output directory" msgstr "shteg për te drejtori përfundimesh" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "një listë kartelash specifike për rimontim. E shpërfillur, nëse jepet -a" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "(opsionale) një listë kartelash të caktuara për t’u rimontuar. E shpërfillur, nëse është dhënë --write-all" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "mundësi të përgjithshme" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "montues për t’u përdorur (parazgjedhje: html)" +msgid "builder to use (default: 'html')" +msgstr "montues për t’u përdorur (parazgjedhje: 'html')" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "shkruaj krejt kartelat (parazgjedhje: shkruaj vetëm kartela të reja dhe ato të ndryshuara)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "mos përdor një mjedis të ruajtur, lexo përherë krejt kartelat" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "shteg për mjedis të ruajtur në fshehtinë dhe kartela doctree (parazgjedhje: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "montoje në paralel me N procese, kur është e mundur (vlera speciale “auto”\" do ta vërë N-në sa cpu-count)" +msgid "path options" +msgstr "mundësi shtegu" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "shteg ku gjendet kartelë formësimi (conf.py) (parazgjedhje: i njëjtë me SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "drejtori për kartela doctree dhe mjedisi (parazgjedhje: OUTPUT_DIR/.doctrees)" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "mos përdor fare kartelë formësimesh, vetëm mundësitë -D" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "drejtori për kartelën e formësimit (conf.py) (parazgjedhje: SOURCE_DIR)" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "mos përdor kartelë formësimi, përdor vetëm rregullime nga mundësitë -D" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "anashkalo një rregullim te kartelë formësimi" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "jep një vlerë te gjedhe HTML" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "përcaktoni etiketë: përfshi blloqe “only” me TAG" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "mënyrë gërricëse, sinjalizo mbi krejt referencat që mungojnë" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "mënyra “nit-picky”: sinjalizo për krejt referencat që mungonjnë" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "mundësi për ç’prodhon konsola" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "pa output në stdout, thjesht sinjalizime në stderr" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "pa output fare, madje as sinjalizime" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "mundësi kontrolli sinjalizimesh" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "shkruaj sinjalizime (dhe gabime) te kartela e dhënë" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "shndërroji sinjalizimet në gabime" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "me -W, vazhdo punën, kur merren sinjalizime" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "me --fail-on-warning, vazhdo, kur merren sinjalizime" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "xhiro Pdb, në rast përjashtimesh" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "s’mund të ndërthuret një mundësi -a dhe emra kartelash" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "s’hapet dot kartelë sinjalizimesh %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "argumenti i mundësisë -D duhet të jetë në formën emër=vlerë" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "argumenti i mundësisë -A duhet të jetë në formën emër=vlerë" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "fut automatikisht docstrings prej modulesh" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "testo automatikisht copëza kodi te blloqe doctest" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "lidhje mes dokumentimi Sphinx projektesh të ndryshëm" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "shkruaj zëra \"todo\" që mund të shfaqen ose fshihen te montimi" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "kontrolle për mbulim dokumentimi" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "përfshi formula matematikore, të vizatuara si figura PNG ose SVG" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "përfshi formula matematikore, të vizatuara te shfletuesi nga MathJax" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "përfshirje e kushtëzuar lënde, bazuar në vlera formësimi" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "përfshi lidhje te kodi burim i objekteve Python të dokumentuara" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "krijo kartelë .nojekyll për të botuar dokumentin në faqe GitHub" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Ju lutemi, jepni një emër shtegu të vlefshëm." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Ju lutemi, jepni ca tekst." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Ju lutemi, jepni një nga %s." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Ju lutemi, jepni 'y' ose 'n'." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Ju lutemi, jepni një prapashtesë kartele, për shembull, '.rst' ose '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Mirë se vini te mjeti për fillim të shpejtë me Sphinx %s." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Ju lutemi, jepni vlera për rregullimet vijuese (thjesht shtypni tastin\nEnter që të pranohet një vlerë parazgjedhje, nëse është një e tillë\nbrenda kllapave)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Shteg rrënjë i përzgjedhur: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Jepni shtegun rrënjë për te dokumenti." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Shteg rrënje për te dokumenti" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Gabim: te shtegu rrënjë i përzgjedhur u gjet një conf.py ekzistues." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart s’do të mbishkruajë projekte ekzistuese Sphinx." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Ju lutemi, jepni një shteg të ri rrënjë (ose thjesht shtypni tastin Enter, që të dilet)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Keni dy mundësi për vendosjen e drejtorisë së montimeve për çka prodhon Sphinx-i.\nPërdorni një drejtori \"_build\" brenda shtegut rrënjë, ose i ndani\ndrejtoritë \"burim\" dhe \"montim\" brenda shtegut rrënjë." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Nda veçmas drejtoritë burim dhe montim (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Brenda drejtorisë rrënjë do të krijohen dy drejtori të tjera; \"_templates\" për\ngjedhe vetjake HTML, dhe \"_static\" për fletëstile vetjakë dhe kartela të tjera statike.\nMund të krijoni një tjetër parashtesë (bie fjala, \".\") në vend të nënvijës." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Parashtesë emrash për drejtori gjedhesh dhe statikesh" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "Emri i projektit do të shfaqet në disa vende te dokumentimi i montuar." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Emër projekti" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Emër(a) autori(ësh)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "Sphinx-i përdor nocionet e “versionit” dhe “hedhjes në qarkullim” për\nsoftware-in. Çdo version mund të ketë hedhje të shumta në qarkullim.\nBie fjala, për Python-in versionet ngjajnë me 2.5 ose 3.0, teksa hedhja\nnë qarkullim ngjan me 2.5.1 ose 3.0a1. Nëse kjo strukturë duale s’ju\nhyn në punë, thjesht vëruni të dyjave të njëjtën vlerë." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Version projekti" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Hedhje në qarkullim e projektit" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Nëse dokumentet janë shkruan në gjuhë tjetër nga anglishtja,\nmund të përzgjidhni një gjuhë këtu, përmes kodit të asaj gjuhe. Sphinx-i mandej\ndo të përkthejë në atë gjuhë tekstin që prodhon.\n\nPër një listë kodesh të mbuluar, shihni\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Gjuhë projekti" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "Prapashtesa e emrave të kartelave për kartela burim. Zakonisht, kjo\nështë ose \".txt\", ose \".rst\". Vetëm kartelat me këtë prapashtesë\nmerren si dokumente." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Prapashtesë kartele burim" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Një dokument është i veçantë, për faktin se konsiderohet si nyja e epërme\ne \"pemës së lëndës\", domethënë, është rrënja e strukturës hierarkike\ntë dokumenteve. Zakonisht, ky është \"index\", por nëse dokumenti juaj \"index\"\nështë një gjedhe vetjake, si të tillë mund të caktoni një tjetër emër kartele." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Emër i dokumentit tuaj kryesor (pa prapashtesë)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Gabim: kartela master %s është gjetur tashmë një herë në shtegun rrënjë të përzgjedhur." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart s’do të mbishkruajë kartelën ekzistuese." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Ju lutemi, jepni një emër të ri kartele, ose riemërtojeni kartelën ekzistuese dhe shtypni tastin Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Përcaktoni se cilët nga zgjerimet vijuese Sphinx duhen aktivizuar:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Shënim: imgmath dhe mathjax s’mund të aktivizohen në të njëjtën kohë. U hoqë përzgjedhja e imgmath-it." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Për ju mund të prodhohen një kartelë makefile dhe një urdhrash Windows, që\nkështu t’ju duhet vetëm të xhironi, për shembull, `make html', në vend se\ntë thirret drejtpërsëdrejti sphinx-build." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Të krijohet Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Të krijohet kartelë urdhrash Windows? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "Po krijohet kartela %s." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "Ka tashmë një kartelë %s, po anashkalohet." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Përfundoi: U krijua një strukturë fillestare drejtorish." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Tani duhet të populloni kartelën tuaj master file %s dhe të krijoni kartela të tjera\nburim të dokumentimit. " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Përdorni Makefile-in që të montohen dokumentet, kështu:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Përodrni urdhrin sphinx-build që të montohen dokumentet, kështu:\n sphinx-build -b montues %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "ku montues është një nga montuesin e mbuluar, p.sh., html, latex ose linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nProdho kartelat e domosdoshme për një projekt Sphinx.\n\nsphinx-quickstart është një mjet ndërveprues që bën disa pyetje rreth projektit\ntuaj dhe mandej prodhon një drejtori të plotë dokumentimi dhe një shembull\nMakefile për t’u përdorur me sphinx-build.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "mënyra pa zhurmë" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "rrënjë e projektit" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Mundësi strukture" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "nëse është kërkuar, nda veçmas drejtoritë burim dhe montim" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "në u përcaktoftë, krijo drejtori montimi nën drejtorinë burim" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "zëvendësim për pikën te _templates, etj." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Mundësi bazë të projektit" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "emër projekti" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "emra autorësh" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "version i projektit" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "hedhje në qarkullim e projektit" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "gjuhë dokumenti" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "prapashtesë kartele burim" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "emër dokumenti bazë" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "përdor epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Mundësi zgjerimi" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "aktivizo zgjerimin %s" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "aktivizo zgjerime arbitrare" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Krijim makefile-i dhe batchfile-i" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "krijo makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "mos krijo makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "krijo batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "mos krijo batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "përdor make-mode për Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "mos përdor make-mode për Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Gjedhe projekti" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "drejtori gjedhesh për kartela gjedhe" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "përkufizoni një ndryshore gjedheje" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\" është specifikuar, por s’është specifikuar ndonjë \"projekt\" ose \"autor\"." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Gabim:shtegu i dhënë s’është drejtori, ose kartelat sphinx ekzistojnë tashmë." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart prodhon vetëm te një drejtori e zbrazët. Ju lutemi, specifikoni një shteg rrënjë të ri." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Ndryshore e pavlefshme gjedheje: %s" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree përmban referencë ndaj dokumenti %r të përjashtuar" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree përmban referencë ndaj dokumenti %r që s’ekziston" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "zë i përsëdytur, gjetur te toctree: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Autor ndarjeje: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Autor moduli: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Autor kodi: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,82 +1929,10 @@ msgstr "Mundësia \":file:\" për direktivë csv-table tani njeh një shteg abso msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'." - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametra" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Kthime" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Lloj kthimi" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "anëtar" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "ndryshore" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funksion" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "bashkim" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "lloj" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "parametër funksioni" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Të reja në versionin %s" +msgid "Added in version %s" +msgstr "Shtuar në versionin %s" #: sphinx/domains/changeset.py:24 #, python-format @@ -1967,346 +1944,423 @@ msgstr "Ndryshuar në versionin %s" msgid "Deprecated since version %s" msgstr "Nxjerrë nga përdorimi që me versionin %s" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "Hequr në versionin %s" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "citim i përsëdytur %s, tjetër instancë te %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Përmendja [%s] s’është në referencë." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "Deklarim C++ i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. cpp:%s:: %s'." - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Parametra Gjedhesh" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klasë" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "koncept" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "parametër gjedheje" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klasë)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Kthime" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Lloj kthimi" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funksion" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metodë" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klasë" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format 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:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Ndryshore" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktivë)" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (mundësi direktive)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktivë" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rol" + +#: sphinx/domains/rst.py:247 +#, python-format +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/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'." + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametra" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "anëtar" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "ndryshore" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "bashkim" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "lloj" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "parametër funksioni" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Parametra Gjedhesh" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "Deklarim C++ i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. cpp:%s:: %s'." + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "koncept" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "parametër gjedheje" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "përjashtim" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "veti" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "përshkrim i përsëdytur objekti %s, hasje tjetër te %s, për njërin prej tyre përdorni :no-index:" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, 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:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktivë)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (mundësi direktive)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rol)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktivë" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Ndryshore" -#: sphinx/domains/rst.py:219 -msgid "directive-option" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rol" - -#: sphinx/domains/rst.py:242 -#, python-format -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:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "ndryshore mjedisi; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "Mundësi për rresht urdhrash %s" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "mundësi për rresht urdhrash" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 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:354 +#: sphinx/domains/std/__init__.py:356 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:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "fjalorthi duket të jetë i keformatuar, kontrolloni shmangie kryeradhe" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "term fjalorthi" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "etiketë reference" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "ndryshore mjedisi" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "mundësi programi" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Tregues Modulesh" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Faqe Kërkimesh" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, 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:633 +#: sphinx/domains/std/__init__.py:635 #, 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:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig është i çaktivizuar. :numref: është shpërfillur." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, 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:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "lidhja s’ka titull: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format i pavlefshëm: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format i pavlefshëm: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "etiketë e papërkufizuar: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "S’u arrit të krijohet ndërreferencë. S’u gjet një titull, ose një përshkrim: %r" @@ -2323,35 +2377,35 @@ msgstr "formësimi ndryshoi" msgid "extensions changed" msgstr "zgjerimet u ndryshuan" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "version jo i tanishëm i mjedisit të montimit" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "drejtoria burim ka ndryshuar" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Ky mjedis është i papërputhshëm me montuesin e përzgjedhur, ju lutemi, zgjidhni një tjetër drejtori doctree." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "S’u arrit të skanohen dokumente te %s: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Përkatësia %r s’është e regjistruar" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "dokumenti s’është i përfshirë në ndonjë toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "U gjet “toctree” që i referohet vetes. U shpërfill." @@ -2375,39 +2429,39 @@ msgstr "lloj i panjohur zëri treguesi: %r" msgid "Symbols" msgstr "Simbole" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "u pikasën referenca rrethore toctree-je, po shpërfllen: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree përmban referencë ndaj dokumenti %r që s’ka titull: s’do të prodhohet ndonjë lidhje" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "toctree përmban referencë dokumenti të papërfshirë %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "kartelë figure jo e lexueshme: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "kartelë figure %s jo e lexueshme: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "kartelë shkarkimi jo e lexueshme: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "Do të krijonte kartelë %s." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nShih në mënyrë rekursive te për module dhe\npaketa Python dhe krijo një kartelë reST me direktiva\nautomodulesh për paketë te .\n\ns mund të jetë shprehje kartelash dhe/ose\ndrejtorish që mund të përjashtohen nga prodhimi.\n\nShënim: Si parazgjedhje, ky programth s’do të anashkalojë\nkartela të krijuara tashmë." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "shteg për te modul për te dokumenti" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "kartelë fnmatch-style dhe/ose rregullsi drejtorish për t’u përjashtuar prej prodhimit" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "drejtori ku të vendosen krejt përfundimet" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "thellësi maksimum nënmodulesh për shfaqje te TEL (parazgjedhje: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "mbishkruaj kartela ekzistuese" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "ndiq lidhje simbolike. E fuqishme, kur ndërthuret me collective.recipe.omelette." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "xhiroje programthin pa krijuar kartela" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "vendose dokumentim për çdo modul në faqe më vete" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "përfshi modulet \"_private\"" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "emër kartele për tryezën e lëndës (parazgjedhje: modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "mos krijo një kartelë tryeze lënde" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "mos krijo krye për paketat modul/paketë (për shembull, kur ato i përmban tashmë docstrings)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "vendose dokumentimin e modulit përpara dokumentimit të nënmodulit" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "interpreto shtigje modulesh sipas specifikimeve impicite PEP-0420 për emërhapësira" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "prapashtesë kartele (parazgjedhje: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "prodho me sphinx-quickstart një projekt të plotë" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "shto module_path pas sys.path, e përdorur kur është dhënë --full" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "emër projekti (parazgjedhje: emër moduli rrënjë)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "autor(ë) projekti, e përdorur kur është dhënë --full" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "version projekti, e përdorur kur është dhënë --full" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "hedhje në qarkullim e projektit, e përdorur kur është dhënë --full, si parazgjedhje merr --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "mundësi zgjatimi" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s s’është drejtori." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "pjesa “%s” etiketohet si “%s”" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "shprehje e rregullt e pavlefshme %r te %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "Testimi i mbulimit te burimet përfundoi, shihni te përfundimet në %(outdir)spython.txt." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "shprehje e rregullt %r e pavlefshme te coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "API C e padokumentuar: %s [%s] te kartela %s" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "moduli %s s’u importua dot: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "funksion python i padokumentuar: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "klasë python e padokumentuar: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "metodë python e padokumentuar: %s :: %s :: %s" @@ -2595,24 +2649,24 @@ msgstr "'%s' s’është mundësi pyversion e vlefshme" msgid "invalid TestCode type" msgstr "lloj TestCode i pavlefshëm" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "Testimi i doctests-eve te burimet përfundoi, shihni te përfundimet në %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "s’ka kod/dhënie te blloku %s në %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "po shpërfillet kod “doctest” i pavlefshëm: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "=================== kohëzgjatjet më të ngadalta të leximit ===================" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 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" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "S’u gjet kartelë e jashtme Graphviz %r, ose dështoi leximi i saj" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "Po shpërfillet direktivë “graphviz” pa lëndë." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "Duhet ujdisur shteg të ekzekutueshmi graphviz_dot! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "urdhri dot %r s’mund të xhirohet (i nevojshëm për çka prodhon graphviz), kontrolloni rregullimin graphviz_dot" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "dot përfundoi me gabim:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "dot s’prodhoi kartelë përfundim:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format duhet të jetë një nga 'png', 'svg', por është %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "kod dot %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[grafik: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[grafik]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "S’arrihet të xhirohet urdhri %r. për shndërrim figure. Si parazgjedhje, 'sphinx.ext.imgconverter' lyp ImageMagick. Sigurohuni se është i instaluar, ose për mundësinë 'image_converter' caktoni një urdhër vetjak shndërrimi .\n\nTraceback: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "shndërrimi përfundoi me gabimin:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "s’mund të xhirohet urdhër shndërrimi %r, kontrolloni rregullimin image_converter" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "Urdhri LaTeX %r s’mund të xhirohet (i nevojshëm për shfaqje formulash matematikore), kontrolloni rregullimin imgmath_late" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "Urdhri %s %r s’mund të xhirohet (i nevojshëm për shfaqje formulash matematikore), kontrolloni rregullimin imgmath_%s" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "shfaq latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "latex brendazi %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "Lidhje për te ky ekuacion" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "inventari intersphinx është lëvizur: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "po ngarkohet inventari intersphinx prej %s…" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "u hasën disa probleme me disa nga inventare, por kishin alternativa funksionale:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "s’u arrit të kapej ndonjë inventar me problemet vijuese:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(te %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(te %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "s’u gjet objektiv reference të jashtme %s:%s: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "identifikuesi intersphinx %r s’është varg. U shpërfill" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "S’u arrit të lexohej intersphinx_mapping[%s], u shpërfill: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[burim]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Për T’u Bërë" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "U gjet zë Për T’u Bërë: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> gjendet te %s, rreshti %d.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "zëri origjinal" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "po theksohet kod moduli… " -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[dokumente]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Kod moduli" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Kod burim për %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Përmbledhje: kod moduli" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Krejt modulet për të cilët ka kod të gatshëm

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "vlerë e pavlefshme mundësie për member-order: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "vlerë e pavlefshme për mundësinë class-doc-from: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "nënshkrim i pavlefshëm për auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "gabim gjatë formatimi argumentesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: s’u arrit të përcaktohet %s.%s (%r) për t’u dokumentuar, u shfaq përjashtimi vijues:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "s’dihet cili modul të importohet për vetëdokumentim të %r (provoni të vendosni te dokumenti një direktivë \"module\" ose \"currentmodule\", ose të jepni shprehimisht një emër moduli)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "gabim gjatë formatimi nënshkrimesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" në emër automoduli nuk ka kuptim" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ should duhet të jetë një listë vargjesh, jo %r (në module %s) -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "Baza: %s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut %s që mungon te objekt %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "alias për %s" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "S’u arrit të përtypej një vlerë parazgjedhje argumenti për %r: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "S’u arrit të përditësohet nënshkrim për %r: s’u gjet parametër: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "S’u arrit të përtypet type_comment për %r: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referenca vetëpërmbledhjeje përjashtuan dokumentin %r. U shpërfill." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "vetëpërmbledhje: s’u gjet kartelë stub %r. Kontrolloni rregullimin tuaj autosummary_generate." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,26 +3052,26 @@ msgid "" "%s" msgstr "përmbledhje e automatizuar: s’u arrit të importohej %s.\nNdihmëza të mundshme:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "s’u arrit të përtypej emri %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "vetëpërmbledhja prodhon së brendshmi kartela .rst. Por source_suffix juaj s’përmban .rst. U anashkalua." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "veçoria e përmbledhjes së automatizuar prodhon kartela .rst së brendshmi. Por source_suffix juaj nuk përmban .rst. U anashkalua." #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "dokumentoni saktësisht pjesët te moduli __all__ attribute. (parazgjedhje: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "Argumente Fjalëkyçi" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Shembull" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Shembuj" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Shënime" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Parametra të Tjerë" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Referenca" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Sinjalizime" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "u caktua vlerë e pavlefshme (mungon kllapë mbyllëse): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "u caktua vlerë e pavlefshme (mungon kllapë hapëse): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz mbyllëse): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz hapëse): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Vëmendje" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Kujdes" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Rrezik" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Gabim" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Ndihmëz" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "E rëndësishme" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Shënim" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Shihni edhe" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Ndihmëz" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Sinjalizim" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "Tryeza e Lëndës" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Kērko" @@ -3307,7 +3366,7 @@ msgstr "Të drejta kopjimi" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "" +msgstr "© %(copyright_prefix)s %(copyright)s." #: sphinx/themes/basic/layout.html:212 #, python-format @@ -3342,34 +3401,22 @@ msgstr "Subjekti pasues" msgid "next chapter" msgstr "kapitulli pasues" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Që të aktivizohet funksioni i kërkimit, ju lutemi, aktivizoni\n JavaScript-in." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "Kërkimi për disa fjalë njëherësh shfaq vetëm përputhje që\n përmbajnë krejt fjalët." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "kërko" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Përfundime Kërkimi" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Kërkimi juaj s’gjeti përputhje me ndonjë dokument. Ju lutemi, sigurohuni se janë shkruar saktë krejt fjalët dhe se keni përzgjedhur aq kategori sa duhen." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Kërkim i shpejtë" @@ -3406,20 +3453,30 @@ msgstr "Ndryshime API C" msgid "Other changes" msgstr "Ndryshime të tjera" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Përfundime Kërkimi" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Kërkimi juaj s’gjeti përputhje me ndonjë dokument. Ju lutemi, sigurohuni se janë shkruar saktë krejt fjalët dhe se keni përzgjedhur aq kategori sa duhen." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "Kërkimi përfundoi, u gjetën ${resultCount} faqe me përputhje me vargun e kërkimit." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Kërkim" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Po përgatitet kërkim..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", në " @@ -3440,30 +3497,30 @@ msgstr "Zgjeroje anështyllën" msgid "Contents" msgstr "Lëndë" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" -msgstr "" +msgstr "s’u njehsua dot ecuri përkthimi!" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" -msgstr "" +msgstr "pa elementë të përkthyer!" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "U gjet tregues me bazë 4 shtylla. Mund të jetë një e metë e zgjerimeve që përdorni: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Poshtëshënimi [%s] s’është në referencë." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "Poshtëshënimi [#] s’është në referencë." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "referenca pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 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:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,97 +3565,97 @@ msgstr "s’u gjet objektiv reference %s:%s: %s" msgid "%r reference target not found: %s" msgstr "s’u gjet objektiv reference %r: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "S’u pru dot figurë e largët: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "S’u soll dot figurë e largët: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Format i panjohur figure: %s…" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "shenja burimi të padeshifrueshme, po zëvendësohen me \"?\": %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "e anashkaluar" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "e dështuar" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "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:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "emër direktive ose roli të panjohur: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "lloj i panjohur nyjeje: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "gabim leximi: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "gabim shkrimi: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" -msgstr "" +msgstr "locale_dir %s s’ekziston" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "Format i pavlefshëm datash. Quote the string by single quote Nëse doni të jepet drejtpërsëdrejti, përdorni për vargun thonjëza njëshe: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r është nxjerrë nga funksionimi për zëra treguesi (nga zëri %r). Në vend të tij përdorni “pair: %s”." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "“toctree” përmban referencë për te një kartelë joekzistuese %r" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "s’u gjet rol parazgjedhje %s" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" -msgstr "" +msgstr "Lidhje për te ky përkufizim" #: sphinx/writers/html5.py:397 #, python-format @@ -3612,29 +3669,29 @@ msgstr "Çfarëdo ID-sh jo të përshoqëruara për nyjën %s" #: sphinx/writers/html5.py:462 msgid "Link to this term" -msgstr "" +msgstr "Lidhje për te ky term" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" -msgstr "" +msgstr "Lidhje për te kjo krye" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" -msgstr "" +msgstr "Lidhje për te kjo tabelë" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" -msgstr "" +msgstr "Lidhje për te ky kod" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" -msgstr "" +msgstr "Lidhje për te kjo figurë" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" -msgstr "" +msgstr "Lidhje për te kjo “toctree”" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "S’u mor dot madhësi figure. Mundësia :scale: u shpërfill." @@ -3651,13 +3708,13 @@ msgstr ":maxdepth: shumë i madh, u shpërfill." msgid "document title is not a single Text node" msgstr "titulli i dokumentit s’është nyje njëshe Teksti" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 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:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Poshtëshënime" @@ -3676,20 +3733,20 @@ msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill." msgid "unknown index entry type %s found" msgstr "u gjet lloj i panjohur %s zërash treguesi" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[figurë: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[figurë]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "titull jo brenda një figure." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "lloj nyjeje i pasendërtuar: %r" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 2309a0d003186cf69b631457e8173e82584a338b..1d6b421bba124481cac03584ca39dd15d53f6e18 100644 GIT binary patch delta 2351 zcmYM!eQ4EH7{Kw9+nsB<&Am9Ab8DMvnl1Noac zSVDXbC*m+xhL8&5bH*mjL?<+(0~etK+i^0k#q05ToPhh$1$)tXpW}EOKnpsFWq1Zz zD-1^+oJX94*{mN*xvAnoHBQ2Xn8Y^B#g~!IhaMzHcoR+hKDy91XkjPN0xqKC|BCSl zjw4P`wav{&3(Ca=>xaqQn(^ z&HFamu|Bi|$1r7!f8d5s7~*0f!_h3V`Md;OU>aJ`>=-v*()&*O*{uJXihe`G~z+D@Nt}67n+1OU^AMp4W0Mo6#DO}-4O@$B6Gt4TIu;1|A`*TTxOe~f{Sr8 zy5JIY-a2$cTVvdfb~KF-<1xGiYxu6Zp|+{?-wBV$2T!Ai<^{CEG`^1gXiL{qtu5Y+ z_1J|La0u<#S#;-rL^CSJ4sQvPA~d0e-;Zwa(G)i>v=L|Ei)dx(`1~lk@R=C@imQo7 zunAYu*9P2&)A2jJ4gW?9Nmh<6*otgEEJqjKh_f*D3^!JE5IMNv2rj@AXzPkN(*AuG zI=V1Xu^*8yc0c4 zd(d}y7@cMHK gE?HUM&|Ke`zOV4`H5tiUYtwnfTN3GX>D-+E09;wuM*si- delta 2393 zcmYM!ZA{fw9Ki8o0*QzaC{K!BEFT~#c`&geZCO~GFHBSEg_&h#i4-_bXNz6#=bUrT`JLbS{m;E`Hk@fl zp2|zx68L+b|FQhHr`h}e@4~PUTIgQHbbL57gbBD7d4+AfIsOLb<8HhR4`LR67ROIw z0sV8Biy6a1NQ96Kg*04Hhc37cowx{{*o1}HhDG=?j==ZO4G*B}dhk;G8cpa&9D~0g zdxi`qX)cb$5*)_(P(jt&_qfxo&CdP8aY^rZcrclbCFnKNgTfytyFXDKZyoxM-zDw-Eb=oB#r}# zqX+9k;~zmQcLI}^;#V4$`fubFvRG|GMbRnfcpbXI&1hotV!sjd=--VQxCV{80X^xn z=*FATeRiPh_heK58)zJ0zyST|1|wN*<^|}9$D^073Jtgr7voYKid|?W_G1DMp?Bz8 zbbcQicL=AlQkiHXIXTqdj1vr)(PVUD4Vu7papD{_&>d(c?m`2tiv1S!&Lq)qQ74+f zG4x+t*i;$sEhEA+TPcjP)e0#JJt=zKs`6}coh9r7` z=g`Zy72UW4J-}XMpJX^Z*a*kb4NhVi-Y%w1T(E_!v&XT}V#hC>G;4=tk$! z(x&r(O(+|UlaC%~I{FCbqU#o*6>Y+qe*f3gn24P?8^1y`9m7T7;)W_T&}^*31!#bF zG{J4L-;K`y6n%uf=*Fkx_@A+F7Ov02gB^|iUbM1(cn@ZerT$ZCJi?dO6KzKqbj1Ea^zs}*6YRrX zm_wG9wi7M&A*{wv&;eK{wimlduO(tS^pd zP&YRoht4a<`|w7biEm>KevjU%f&@Qecs=?E)}i}tM2ZlSuhDSheOQhkqZ7^{7kl8r z&w@fOfTdfEe%^$xYeNnjHlmf<9mhXM6a6ms&qmLqk0ygMus#_QG~BonU9cDpxEwv< z6S4nF{JblUccYi-OPq@TpzE%r{#NW(ddfp zLvtQYtX!Q~yP~CaW%KI9#Mac(5g(;z*HlictE`%lsH(kodR^-3y!}IlR$o<>I-CD= adgkVy4|+O#_8fcarJaSvspjHqhW`g^*yBk6 diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 52a57ae54c4..656bffe06dc 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vladimir Milovanović , 2020\n" "Language-Team: Serbian (http://app.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -39,104 +39,104 @@ msgstr "Изворни и одредишни директоријум не мо msgid "Running Sphinx v%s" msgstr "Покрећем Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Овај пројекат захтева верзију Sphinx v%s или већу, не може се изградити инсталираном верзијом." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "готово" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,70 +157,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,290 +233,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Одељак %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Сл. %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Табела %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Списак %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Догађај %r већ постоји" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Непознат догађај: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "Преводилац за %r већ постоји" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -528,8 +570,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -578,7 +620,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -587,50 +629,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "ажурирање окружења: " -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "припремање докумената" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -639,36 +681,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "пребацивање слика... " -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -676,470 +718,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "пребацивање изворних датотека..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (у " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "индекс" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "напред" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "документација %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX датотеке су у %(outdir)s." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Индекс" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Издање" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1154,15 +1196,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1221,8 +1263,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1254,7 +1296,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1262,249 +1306,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Име пројекта" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Име(на) аутора" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1513,15 +1562,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Верзија пројекта" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Издање пројекта" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1531,21 +1580,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Језик пројекта" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Суфикс изворне датотеке" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1553,91 +1602,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1647,135 +1696,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "име пројекта" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "имена аутора" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "верзија пројекта" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "издање пројекта" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "језик пројекта" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "суфикс изворне датотеке" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "користи epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1826,47 +1875,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Аутор одељка: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Аутор модула: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Аутор кода: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Аутор: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1881,82 +1930,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Параметри" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Резултат" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Тип резултата" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "променљива" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "функција" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "тип" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Додато у верзији %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1968,346 +1945,423 @@ msgstr "Измењено у верзији %s" msgid "Deprecated since version %s" msgstr "Застарело почевши од верзије %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "класа" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (класа)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Аргументи" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Резултат" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Тип резултата" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "функција" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "метода" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "класа" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "модул" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Променљиве" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "директива" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Параметри" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "променљива" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "тип" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "изузетак" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "директива" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Променљиве" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "променљива окружења; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "документ" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2324,35 +2378,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2376,39 +2430,39 @@ msgstr "" msgid "Symbols" msgstr "Симболи" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,7 +2472,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2430,149 +2484,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "суфикс датотеке (подразумевани: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2596,24 +2650,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2624,32 +2678,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2659,7 +2713,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2669,27 +2723,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2697,7 +2751,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2707,173 +2761,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(у %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(у %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[изворни код]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "План" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[документација]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Код модула" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Изворни код %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Преглед: код модула" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2881,112 +2940,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2994,25 +3053,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3086,99 +3145,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Пример" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Примери" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Белешке" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Упозорења" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Пажња" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Грешка" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Путоказ" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Важно" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Белешка" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Савет" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Упозорење" @@ -3210,7 +3269,7 @@ msgid "Table of Contents" msgstr "Садржај" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Претрага" @@ -3343,34 +3402,22 @@ msgstr "Следећи одељак" msgid "next chapter" msgstr "наредна глава" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "тражи" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Резултати претраге" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Брза претрага" @@ -3407,20 +3454,30 @@ msgstr "" msgid "Other changes" msgstr "Друге измене" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Резултати претраге" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Претражује се" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Припрема претраге..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", у " @@ -3441,30 +3498,30 @@ msgstr "" msgid "Contents" msgstr "Садржај" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3476,13 +3533,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3509,90 +3566,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3615,27 +3672,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3652,13 +3709,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3677,20 +3734,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[слика: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[слика]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 39eef88ea864299a40b7aef07b9f7fa04a088d2e..56b31d8f2946d53c96f7bd7f8cd20105ba1390b7 100644 GIT binary patch delta 13 UcmX@Xa)M=pGZU+co&gsF03G=QF8}}l delta 13 UcmX@Xa)M=pGZU+ko*@?l03GrJE&u=k diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 9df27e918daa7ecdf81c5e8426543e9c24042fd0..c4821d0c439d1d769b348e0e3cd02dda9c6e602e 100644 GIT binary patch delta 13 UcmX@ia+qa<9TTgGo&gsF03BHaAOHXW delta 13 UcmX@ia+qa<9TTgOo*@?l03A{T9{>OV diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index c9f280d44a7969723f11d45f1c32a4943d9e7f46..7331a074e1c793947ff251a9e0110f496328a1a2 100644 GIT binary patch delta 2137 zcmYk+eP~r>9Ki8s-RZXSx|hf1dx9oc{MWuR5h^w41R8Tch2M^|ZV2a$JG4aV^&2BRCWLu?1g5 z$G?S_;RncirF4P|C!Rzn{)RcM;O-opi!-o*2D$+|a5XmJ0M5c;afIa!&LScTsqG15=b z{ypyhgICa>$x?p@%ptl9x1pu%LLWgdn$UgdxXox~9zz3_FoT2WMuy`44m5$6(QzZu z9!1wXfX#R?Oa1?QMsyfp5-s^zB*}CR{VL4P0L|$51?UbIp)cvO=wF8hcmSE29uA*E z*L@xr;Erg&UE;zF$HMo*578YQM+1+e34Mhe=|@fmI*(TBV)WPXB3Qxs=sR&eC+FXS z#<>mW;$6`$ZQ;V5Z$mR4KqtI}2H1m#D^eOpOMNdNu@$%<-O)p60$Z>FpF!W9-N=-* z4_)_NY{ieG|19!umC^++T(Fwimb3w#cn$hH&>i-o71)SONsnS42hklJi2h?};-}ES zKcE{thdp>P?)UKK&i4E7<-$^LK%ZqFn#gl#sb9nSxDQSAlW-iZ)VFA9PooL{j8-bc zBE(8nXhMx>!ma36bt~5U{ol=n6COk-^q~v)qlpcorG5b|?Jit|Z=&NT(9)hkf3RjU z$N+it(G<~2tcd>A;d(4t(#>4Bv&Ye2s_oIiLD!wa#aK~dn|5@f8Foi|X}BES!OFOQ2O4lK`ju=#E4B@J{OMVA1FxW8#V9)N z2%7k3;RO1wN$pv(Q8fN=a=FpusmGjl#XUfeprZU-Ldq=Uov)EGTx~|Y& XURbxLB2&D!qx^JzZDo06)}hS5WQn)Y delta 2197 zcmYk+duWwq9Ki8sp0%4E=Ukh!Ri3R)nmOB!i#D;#mJK3U5zOij{~D_usL5s;W^kra zC?;(z4TREg$;2*`l@^V_f(Xf|b(4*fZgjtl{;-jZzTfpgjkEK4pXYtv-}C$Z-uFEt z>FIR#%cZ&d1AjaDznuS?Tu1-?tu6@R5{C6yh->5c1}tHG3zlLhmSYB&-~cYhAxz<6 zbp2^uh#w>Ivf(@jUic$=p|i`N1S_x(7hxN^(H+=;U08`vV;PPipYU$_CCmiR?L{6fennWue24Eq8GNK0q;Z;+!%cT4X_KV@BkL$>u9Imi{np`Pxvm* z&mcL3IrLT(vN-ERB?oT266afkR@{Pa+=i~Z2ivdQ<3(I3zXen&UHfF^Vi`Gi7lyc<=ZovK3T(`W})`WCLhvuL8fMlYb9%3-ms%|jDT zqMfQmatL*3LhI3lZ^a_t|IHj&$s_0mPoftLqJfW~iH)MI9z$Du5?AB<==xc-wTn3E z4_5=)+1t@uvk~pY{c(OP&cFWy9B^&ei?;SKTH#A*XHLcO2WV%`p@C3{&&yjA2KjQgZ`fNo>G)^UY z3s$1>>d^$!(e-E|?dZCWW%S>PPA1G~6Z(^SUmWj7HyA=&e+b>^1+2v}bfeGE>!;CY zHl0X+i_sj6R$lXeD=zFE98yQT%W!)0^7X z-M=NXxi?k2W&E#&bBW~I`iAEE#_Lm!P3x{}9#1Uk%*ju$X)Fp?XNIc^s>TOOeoB;X T@9BQ1yFZor|HVCJ6N!HSj=03C diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 135fa9d10ae..42c4b339900 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (http://app.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Inbyggda" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(i " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "nästa" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "föregående" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Utgåva" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Sektionsförfattare" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Modulförfattare" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Källkodsförfattare" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Upphovsman:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,82 +1928,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametrar" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Returnerar" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Returtyp" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "medlem" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "variabel" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "funktion" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "typ" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Nyheter i version %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1966,346 +1943,423 @@ msgstr "Förändrat i version %s" msgid "Deprecated since version %s" msgstr "Ersatt sedan version %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Kastar" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "klass" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Kastar" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Returnerar" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Returtyp" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "funktion" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "klass" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modul" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Variabler" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (direktiv)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Väcker" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (roll)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "direktiv" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "roll" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametrar" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "medlem" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "variabel" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "typ" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "undantag" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (direktiv)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (roll)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "direktiv" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "roll" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Variabler" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Väcker" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "miljövariabel; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Att göra" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "ursprungsvärde" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modulkällkod" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

Källkod för %s

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Översikt: modulkällkod" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Alla moduler där källkod finns

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Uppmärksamma" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Varning" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Risk" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Fel" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Råd" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Viktigt" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Observera" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Se även" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Varning" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Sök" @@ -3341,34 +3400,22 @@ msgstr "Nästa titel" msgid "next chapter" msgstr "Nästa kapitel" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Var god aktivera JavaScript för sökfunktionalitet." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "sök" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Sökresultat" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Snabbsök" @@ -3405,20 +3452,30 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Sökresultat" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "Expandera sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fotnoter" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.js b/sphinx/locale/ta/LC_MESSAGES/sphinx.js index 9e9ca89380d..1aa60c15c58 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.js @@ -1,60 +1,60 @@ Documentation.addTranslations({ "locale": "ta", "messages": { - "%(filename)s — %(docstitle)s": "", - "© %(copyright_prefix)s %(copyright)s.": "", - ", in ": "", - "About these documents": "", - "Automatically generated list of changes in version %(version)s": "", - "C API changes": "", - "Changes in Version %(version)s — %(docstitle)s": "", - "Collapse sidebar": "", - "Complete Table of Contents": "", - "Contents": "", - "Copyright": "", - "Created using
Sphinx %(sphinx_version)s.": "", - "Expand sidebar": "", - "Full index on one page": "", - "General Index": "", - "Global Module Index": "", - "Go": "", - "Hide Search Matches": "", - "Index": "", - "Index – %(key)s": "", - "Index pages by letter": "", - "Indices and tables:": "", - "Last updated on %(last_updated)s.": "", - "Library changes": "", - "Navigation": "", - "Next topic": "", - "Other changes": "", - "Overview": "", - "Please activate JavaScript to enable the search\n functionality.": "", - "Preparing search...": "", - "Previous topic": "", - "Quick search": "", - "Search": "", - "Search Page": "", - "Search Results": "", - "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.": "", - "Show Source": "", - "Table of Contents": "", - "This Page": "", - "Welcome! This is": "", - "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", - "all functions, classes, terms": "", - "can be huge": "", - "last updated": "", - "lists all sections and subsections": "", - "next chapter": "", - "previous chapter": "", - "quick access to all modules": "", - "search": "", - "search this documentation": "", - "the documentation for": "" + "%(filename)s — %(docstitle)s": "%(\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bc6\u0baf\u0bb0\u0bcd) \u0b8e\u0bb8\u0bcd — %(\u0b9f\u0bbe\u0b95\u0bcd\u0bb8\u0bcd\u0b9f\u0bbf\u0b9f\u0bbf\u0bb2\u0bcd) \u0b95\u0bb3\u0bcd", + "© %(copyright_prefix)s %(copyright)s.": "© %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bbf\u0bae\u0bc8_\u0baa\u0bbf\u0bb0\u0bc6\u0b83\u0baa\u0bbf\u0b95\u0bcd\u0bb8\u0bcd) \u0b8e\u0bb8\u0bcd %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bbf\u0bae\u0bc8) \u0b95\u0bb3\u0bcd.", + ", in ": ", \u0b87\u0bb2\u0bcd", + "About these documents": "\u0b87\u0ba8\u0bcd\u0ba4 \u0b86\u0bb5\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bc8\u0baa\u0bcd \u0baa\u0bb1\u0bcd\u0bb1\u0bbf", + "Automatically generated list of changes in version %(version)s": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1) S \u0b87\u0bb2\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bbf\u0ba9\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bcd \u0ba4\u0bbe\u0ba9\u0bbe\u0b95 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1", + "C API changes": "\u0b9a\u0bbf \u0b8f\u0baa\u0bbf\u0b90 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Changes in Version %(version)s — %(docstitle)s": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 %(\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1) S — %(\u0b9f\u0bbe\u0b95\u0bcd\u0bb8\u0bcd\u0b9f\u0bbf\u0b9f\u0bbf\u0bb2\u0bcd) \u0b95\u0bb3\u0bcd", + "Collapse sidebar": "\u0baa\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf \u0b9a\u0bb0\u0bbf\u0bb5\u0bc1", + "Complete Table of Contents": "\u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bbf\u0ba9\u0bcd \u0bae\u0bc1\u0bb4\u0bc1\u0bae\u0bc8\u0baf\u0bbe\u0ba9 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", + "Contents": "\u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Copyright": "\u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bbf\u0bae\u0bc8", + "Created using Sphinx %(sphinx_version)s.": " \u0bb8\u0bcd\u0baa\u0bbf\u0ba9\u0bcd\u0b95\u0bcd\u0bb8\u0bcd %(\u0bb8\u0bcd\u0baa\u0bbf\u0ba9\u0bcd\u0b95\u0bcd\u0bb8\u0bcd \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd.", + "Expand sidebar": "\u0baa\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bc8 \u0bb5\u0bbf\u0bb0\u0bbf\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Full index on one page": "\u0b92\u0bb0\u0bc1 \u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0bae\u0bc1\u0bb4\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1", + "General Index": "\u0baa\u0bca\u0ba4\u0bc1 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", + "Global Module Index": "\u0b89\u0bb2\u0b95\u0bb3\u0bbe\u0bb5\u0bbf\u0baf \u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", + "Go": "\u0baa\u0bc7\u0bbe", + "Hide Search Matches": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0baa\u0bcb\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bb3\u0bc8 \u0bae\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd", + "Index": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1", + "Index – %(key)s": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 & ndash; %(\u0bb5\u0bbf\u0b9a\u0bc8\u0b95\u0bb3\u0bcd", + "Index pages by letter": "\u0b95\u0b9f\u0bbf\u0ba4\u0bae\u0bcd \u0bae\u0bc2\u0bb2\u0bae\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0b95\u0bcd\u0b95\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Indices and tables:": "\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8\u0b95\u0bb3\u0bcd:", + "Last updated on %(last_updated)s.": "\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 %(last_updated) s \u0b87\u0bb2\u0bcd \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.", + "Library changes": "\u0ba8\u0bc2\u0bb2\u0b95 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Navigation": "\u0bb5\u0bb4\u0bbf\u0b9a\u0bc6\u0bb2\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd", + "Next topic": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", + "Other changes": "\u0baa\u0bbf\u0bb1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Overview": "\u0b95\u0ba3\u0bcd\u0ba3\u0bcb\u0b9f\u0bcd\u0b9f\u0bae\u0bcd", + "Please activate JavaScript to enable the search\n functionality.": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bc8 \u0b87\u0baf\u0b95\u0bcd\u0b95 \u0b9c\u0bbe\u0bb5\u0bbe\u0bb8\u0bcd\u0b95\u0bbf\u0bb0\u0bbf\u0baa\u0bcd\u0b9f\u0bc8 \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd \n \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1.", + "Preparing search...": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bc8\u0ba4\u0bcd \u0ba4\u0baf\u0bbe\u0bb0\u0bbf\u0ba4\u0bcd\u0ba4\u0bb2\u0bcd ...", + "Previous topic": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0ba4\u0bb2\u0bc8\u0baa\u0bcd\u0baa\u0bc1", + "Quick search": "\u0bb5\u0bbf\u0bb0\u0bc8\u0bb5\u0bc1 \u0ba4\u0bc7\u0b9f\u0bb2\u0bcd", + "Search": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd", + "Search Page": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd", + "Search Results": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bcd", + "Search finished, found ${resultCount} page(s) matching the search query.": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0ba8\u0bcd\u0ba4\u0ba4\u0bc1, \u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0bb5\u0bbf\u0ba9\u0bb5\u0bb2\u0bc1\u0b9f\u0ba9\u0bcd \u0baa\u0bca\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbf\u0baf $ {resultCount} \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd (\u0b95\u0bb3\u0bcd) \u0b95\u0bbf\u0b9f\u0bc8\u0ba4\u0bcd\u0ba4\u0ba4\u0bc1.", + "Search within %(docstitle)s": "%(\u0b9f\u0bbe\u0b95\u0bcd\u0bb8\u0bcd\u0b9f\u0bbf\u0b9f\u0bbf\u0bb2\u0bcd) \u0b95\u0bb3\u0bcd \u0ba4\u0bc7\u0b9f\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "Searching": "\u0ba4\u0bc7\u0b9f\u0bbf", + "Searching for multiple words only shows matches that contain\n all words.": "\u0baa\u0bb2 \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0b9f\u0bc1\u0bb5\u0ba4\u0bc1 \u0b95\u0bbe\u0ba3\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bcb\u0b9f\u0bcd\u0b9f\u0bbf\u0b95\u0bb3\u0bc8 \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 \n \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbe\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bc8\u0b95\u0bb3\u0bc1\u0bae\u0bcd.", + "Show Source": "\u0bae\u0bc2\u0bb2\u0ba4\u0bcd\u0ba4\u0bc8\u0b95\u0bcd \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1", + "Table of Contents": "\u0b89\u0bb3\u0bcd\u0bb3\u0b9f\u0b95\u0bcd\u0b95 \u0b85\u0b9f\u0bcd\u0b9f\u0bb5\u0ba3\u0bc8", + "This Page": "\u0b87\u0ba8\u0bcd\u0ba4 \u0baa\u0b95\u0bcd\u0b95\u0bae\u0bcd", + "Welcome! This is": "\u0bb5\u0bb0\u0bb5\u0bc7\u0bb1\u0bcd\u0baa\u0bc1! \u0b87\u0ba4\u0bc1", + "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba4\u0bc7\u0b9f\u0bb2\u0bcd \u0b8e\u0ba8\u0bcd\u0ba4 \u0b86\u0bb5\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bca\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0b8e\u0bb2\u0bcd\u0bb2\u0bbe \u0b9a\u0bca\u0bb1\u0bcd\u0b95\u0bb3\u0bc1\u0bae\u0bcd \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0b95 \u0b89\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9 \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd, \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bcb\u0ba4\u0bc1\u0bae\u0bbe\u0ba9 \u0bb5\u0b95\u0bc8\u0b95\u0bb3\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd.", + "all functions, classes, terms": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0b9f\u0bc1\u0b95\u0bb3\u0bcd, \u0bb5\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd, \u0bb5\u0bbf\u0ba4\u0bbf\u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bb3\u0bcd", + "can be huge": "\u0bae\u0bbf\u0b95\u0baa\u0bcd\u0baa\u0bc6\u0bb0\u0bbf\u0baf\u0ba4\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd", + "last updated": "\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1", + "lists all sections and subsections": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc1\u0ba3\u0bc8\u0baa\u0bcd\u0baa\u0bbf\u0bb0\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1", + "next chapter": "\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0b85\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbe\u0baf\u0bae\u0bcd", + "previous chapter": "\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0b85\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbe\u0baf\u0bae\u0bcd", + "quick access to all modules": "\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bbf\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bc8\u0bb5\u0bbe\u0ba9 \u0b85\u0ba3\u0bc1\u0b95\u0bb2\u0bcd", + "search": "\u0ba4\u0bc7\u0b9f\u0bb2\u0bcd", + "search this documentation": "\u0b87\u0ba8\u0bcd\u0ba4 \u0b86\u0bb5\u0ba3\u0ba4\u0bcd\u0ba4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc7\u0b9f\u0bc1\u0b99\u0bcd\u0b95\u0bb3\u0bcd", + "the documentation for": "\u0b86\u0bb5\u0ba3\u0b99\u0bcd\u0b95\u0bb3\u0bcd" }, "plural_expr": "(n != 1)" }); \ No newline at end of file diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index f9c85a7beb2c15405b3c7ea2397ec5181199cca6..cf2e108c243e0a8c9da7ecc9e3a76ba52acd92ac 100644 GIT binary patch literal 137491 zcmd4434C2;o&SGs6_fyifZzgh8w^RLxuvBlgi5tGUNaK`F@}0oO83Z1^vzc$4mRU z=bUHxKHvRW&dCoBdhGQH|NVGYk{k{$I80aBe=AB!a%mw+R)W`1=4*448~i?~@jP*1 zk~|JP0u=w-z?aD5HEIVZ(Q^pGIS8Bs9t)lfs^3via(XTJCh+TE zA2_@yN$5KHGAMcMhY+6x&H)i=aw=E^CqVJ*tpVQ!ioe@H$@dc=O(b`R=X;%!BpqBI z5b$_V^p-)2Bo~9K_bE{Nb}u*^{3eK~l0Sjcm-z@m{5TgBUF$(qHQ5Xn!S{ix|3y%8 z`40G0@FDO>aPL#SpQAz1KNma;JONbumj~Pi9>Mk3KvXgL4JbW$<`UQE#o!vQ2SDl3 zo#5W!ygV94Uat>a&-D)Q0PxUdNpduJG`JVI668^`7L=Uc49YHk z2ui=YPIEq-28wTIftX@)4k&%Q3Y0u<0!82Lp!oP15K$+80i{PLpe*WV6UY#g+d=8c zZ^07y3_4eTYr!sX2s{RSD=0m^8*B&v47P%;%l-Z`P}dV6s-3(IJPQ0K_&D${;B4?Q zXZrItQ1V$17Qu_beZZT-^Y?+`|4%{5_rF1nb6=P;3p^5p#Yro;9^3#v6TAmhx!-_~ z1@~S7eFf@)>hI*0KF(fH{aqcd-wf`>^*x~U?7o0M2F0&GfogXVLVXZi1Ipe{TIKvW z6V&rMcm;SVcs_XGYS*iwfLDT&&n@72;KxAm<&ftk$qT_}g9m`G2XWEK&EONkZ-BDz zpM#=L%6JHHD0mQfOu$8;%0Ca(^M0@e+zN_cuLQ-1d%zL!XCNw;Jb$f^=WU?+zZKjU z{AjrUIk1cC2fz+6>G5_u11=l-Uq$_yd4yu_dVP7;)&oKuAc%P zikwaZ58-;<^Syo@+@I@Lf@=SD;N!uMflmTI3u=7d29E~+4=BCf_naiDf@gvA!HOF;Rn zn?cFrZmB6*W1!^z8c=+AFQ|UM04@Y)UEq8_8Qh2Kw}6iWZwB`Q z-v`QWKLAQUegMiIehG@6y->GkAX*k_k+^Q{{%&MQX?h;PXwO| zJ{Qz@H-P(rqu_e*B2e`H0Gto*i&8xcTm+)>$r!i*{0g`d-226@k3Hb&Twer=j?aPO z^LIe;>!7;F=?+kGDTC^NE7%6U0ucm9;XgSkEt zl)P4f8s9nKv%zb?6T!Q|<=`xoR@W=QZt!yO4Dhp{lPS z06u1`^Xqs}^sWlmL*NpwUkR%IJ)rpUXHex1nQ*?$1E0+GDp2hXf=>sxfEv#m!Gplt zz{9{#fQNuz2Rp$B!4B|{m$==Y1Rlusg`nj0TJTu#ZJ_M&KJY2v1K?cnVeqNo;TO6; zdk!c$_JNZB72pZr>p``9A1HbL04#!k1x3#hFLn9N2Sw+4@KA6oI1juAd?xs5@JZmq zpzLSXMeZN>1x4ozLG^zX_(bqSpvHGMsPX&~JRJO6z{6kW`gsC~%Sw8|o50V3lF!DM z`?%i*s{T#jdEf`Y6Ty8ic0YYO_;ju}gObPfp!l*4EP?leYVW_mW5BLU{Q5jl^j#gU z?*z}~`e9J*EqjI2HvmeWSAtIi-wvwW$G|hegJ0=%z6g}P^@AGSL zqN@+=0ACMEPd^UM1%Cmmou|LX{myei$#WQ#{9X%+Pq%>T=d<83VBxjiZWs7`u3r>z z2Pir0ca_h>UI0FW>-U3ufe(Pvk8gqE%fq1PJMn6_^C3`n^TvSx9Pl&X5vm7je18B% z|H0R|UMvAc_c~Dge<^r0_gAAfDIvFh$6WGG__rS-3 zKLa)1he3`1PvEKG$=ACczXELI`U{}!@K>PvX?de#37o_A8c_UrIjC{o04@bT2#VhS z0@d$R-{ke$K=E;TxUPdw;QEc>{<}f>gD-(bCn$S=7%YNqZ+3p121-w>;FG~ufro(q z1Rf0D0X`nQ8$1xaAJlkug8PGezs37K1k^Z=0>zKjpy*o%iZ7Rj`(Fg57vBce?qlET zcC|nF9Ij6W#fL4R#`}8kAn@(rlfVyvqU)Y;{ax??u73@xT;T@SgG0c>xIPio_}799 zz;i*3?1=Y^M zH@Y8K1RlY44b-@<0@d#aK}4S19q>i(aDM+GV8>0)*B5{i6z&{U9hl z{T5se?)@Gg$2s5$TyF+X1aAlB{~iYA9}a!5*Lym6G}rUMCxhn(d@(5ct^`HTdqC;K z$HVh)gW}U~K=r@hEv~Oe27C_q)dKnhp72;`zAZ^Ec^vk%jk)%$B>DFpuW&i{XU=bIKC7-n);W5ecXTl-7dES@A2^-3W{&Xfvw;=Q0-m} z%1>Mgitld%PX~Vv9t$4(c`siE&*l16;4{GQgGYk1?)COtLFxC&;FrK}f|A#JzQ7y@ z{1G@G{LsI-{`?G-UwG0N{kjW$9@poCZQ%RCcJQm<2JkQ7WnkZZp1(W@UdQzUI(r;) zxCb2M`u;DwUpbym<&Rc^`-1Dho53o01GxVK9`|nrW%tQf87urd7d)QJE57D*d6-&ejtfD_WebREByR<0gD?1=>%mLGmvH@4a0D!WAKe4L3_cya{Rht9`@xrTJ&T8u z$IHR@frst%a-RjyUyrx}ypikVXYd4g2Y3*;6O_LF7F-QJ5P({-xl4;4eT#nEVAq1j+pm`}*sx|LJtR;TO*T zZ-DZjzXWdrkN&0m{m+AEbN#qq`Mhu)sBzu|-U7bm*Di-se}hhN{RvS0z2~=Xw=ek} zb1AM5`#p13@LKR1@cZB;;P4+91NcjD5FDfNi^1=M&j(-hU(UxJ;3v7B{U`Q_z@4D< zX3d{{{xV$;SNDHAAJ&2UaD5~AH}F;v zmL<3T54sOt&rRvckx9Y&y#RdNW0*gHqWd+EDJ1Uze+NDty#BETlh21hUB7s*g30$< za2?lQ22quyw0FVm?V!gMl9$dx2f+^R|7@Q^@)q#GmV(VEZUaAuoWBif9q`8e3g#E? z+rMD`>9=5s@+Ur_U~;|ytZ}{cfIC?u=E!8VukN5J#BK9pc|0$2yHq5MCC$8)`~ z!|53Z5lM0rILQ4wItvz;pY}}W)A69_Jr|UmF9F-Y+rgKB-vG}ApLa~b;>>NJ^!ulv z__@!Vg2nw3C^?)7&IY%DvZJ?vlE)q30`P%w|8XeWVy=szP?*&hSFW&&) z#r;E$^YMKYd_C8{2T#ThuUJs9b*p=y<8s{pc<+A>Sft!bK=JJc@D%V1p#0drClr!j zfRE`eSl;m)@H(z9JF$>l4?cCF%j0%XbUg)Pa6QSb;4pOEyr^L7fKNQ7kgVta5I6?j z2VMl8y4dkkAfzUXPAw$g;eLII+vUoog=By3pRvsC_W7q3@G1DL(_Jq=1ip;thn-PK za0$s9mlrJFz2i*p=YZ!rz6yK~_5K7(U*EB!VCzc9tSltAas4__{91UH%lXUTyJ+uM zAgoQUUtLIWUCBMqqaOHgYg}LE^%N|hUkOT%Tfqy#SA)H?nAe=`@-Cm_eq-Lb1)IN4 zfGYPHQ1M{Vc?FB(2fe_@{{Z+T?!W(hm)B>(cCLQ}t^`|N==ydpxRC3Yf(L;g1>Z=& zUjz?<&i>v)@;~6#^@ZdMJm1n+uzcjye%ITNf`@SbFQD}Iz=4A0SqlQL0H4790dQZi z0TLRMmxH&{?l8=FE!R)qSg?JB_kr`dK5fwb-~=c+-v^!sKDX-qUI*U6_1D1XftOw2 z_V#U1`NUtqhrzB*1&fbQ9V*y)hS!51;QmUKtCRl!27Zd`&RRh!Lh>Nk13oZXuz1`4 z;)2cV53Cm~&s+;C{uJ^sr5e7fYOr|j6m`&g0BJ}0%eb*FE1n?0h5ah$tA!?!3ucdC57aj z;7#CF;L=wVl79jp0AB`__vheiz`0lW{eJ-!SD$oc!SawEQ2pHuUJm{l zd>#18*A$YQRPMC}%RBA_PvLsjRUTiLfa2Hpz%uxI@WbFaR~Ib*e8M$_549Z}a?N2{@bUo4|hqKMT&MpKIPn zyaGS-&mQ;A*;cUp`UdbNl>0d-yXoKVb~*u;x&8sT4Ls#`;t}{uP~$r41BGM@I1GLZ z{0aC&@RN5GlK%$Z@j>U`+dt%a&>z4h+`n!|A-MAU0pz?7$A8T8=r@5K+&}(bd^~0FT9pHjW!%Fbcfa}ePZVq& z=de$@{8oa}s}F(lgAaky*R^-Ke*6`@fa^DXs$lb)S)cZCoeREz`?rJg|NDN1d>i}| zD0{iwWI?IC%`H@@v5%@U@`)>YujC%A=Yp#LA@JSc%CEXyehV(;`W0Vue{m0Z z1lJv3cRM@{l-*8%`+4j||0(bw?tkt(uCLz$Wml`e>v9+Zujjh|dxhja@K2!fzI(p!_5J`#ANTn| zA^AOcBKQ$--oKMafDeN5>;JLS`LgY`N4C+8@Rp~lzb~c^*rnop!D?np#0IYpE;d3g3`M?K-uNGpZmPz>!9NE z?Emoc<6s-t_k-&1_n_?lxChq^xOnWPyZb}6MXWoz5jkt ze7Xjd-F*Q(9c=rJ$B|)BdT|l>T=4MUdK?)958(R$fXc&v2TCu0@jLgU$Nk>t6*qxh z-2W1IFZfsRP2k;saCyGykDgC_6Fipt@BA;HS9~?#0e|v1|6K4TJiiT;-)Q?Y`6GIG zE%>io-|`o?hvC0^-tr~z>D>P{D8F{#f4jXc1l7(hU>!W_f1KVof?K(M?BAS!7lDW> z*$!eF$y*DvEdQ!MW|rme`#g4*#r=N*XY>5Sp!DHed(E==IcM)#$uGHnJE-wq&0^qn z;L(qtWqImH!JD~$&OWnjUE{mp3%Rbe%rbxb8E_NV4}mMdbN2Oi-vyq_^`ZOCvb?1R zuH^cY;d;OQXW2aSd~gx>F9zQW-UZgcjZc_m>mJ_(<;S0Oz$}~Z-3^|=_0b2;vOH}) zsQSMEp96M1ahA;^DxmoKLs0jVgJvba0geY(fyW#?EBR;eLhy<3rQ?uU=5M>7n!m*;`cy?3?%GR;sc%wS9u~;4-t2M@lhs*Ve;y|@t=^v|Z zt~5$5EsfE^>d4kEJ>OUvDOMZBa&bewHZoQj87Pj`ivGMrOQl>JCCXZVrQ-6jV!UXy zj15+b^~n@$s18*cYIL}$=ecHbq!jz2#)D%Y|R3L$7@bbPF6O+alA^*7Y& z!{xDJZNtp1X&3{w{_)`o<47A^zkd3`tY2STJux;|8z~Og2F8b=kfHaNM~ZzKOnJar z*xlXIQY?;6(C!ROX~~Hp_Ff*V(yooYQ5&!KL%z6?F}`oSIy8`RFeN)zQA~3l!kM+J z&R(-*+0x}}jLOlWazDJSj&anSNk_L#>(}vc9fzvR2(i(h&|&C*o&4#4JeLP zhM@^PG=k?qR{zlWfHW|rBGow`x)|LLo2k>xG>9FjZrD(%Bg7zds9GH5Uu{6^5Q+>1 zeG`bJ(qG*$p`J7-Yr9e}j+BQhMI_(@MgI})5L$L3JSz@VHk8MQ#u|*E<&2({D@w&v zC5=kGVd5_jHEPAtN?i(9tkDAeDmP$iy`mx7z?(>J8Lih4hYSt@pNge<2Xl&*&6PST z=G39Q=x1$wY`|LKx2PQ}6<3XqN!e>7LlY*rIKCE_eo#p(JZZ?)k%8*w>cDt;$QZ9t zqhmRJtXB{rE+HtAWM3|>HQO&j^#$-T)5%QQ<_~0qV_3WS3>W{{AcHVoG-@#T#p9KR zvaxwii^rSLH=I)wmI4KFLQC6XrmE}zpaX^X|b#6;_ zY%rK%m&sbAU4hCYoc{581K$A?QK5w^S1mnz#j@Vji+j#kWL#~sb!efZ(Q^N$@x|r8Z)&tj9Q3wEpC|f{Vy}s5B%tpbn*J3*8jG)8MuiE<1P0inEs*B|Xd5oVCc6 zi~-r$=y@(e$rvzN9)szy)Ofw6IyA)KTPj;+Pm-hDX)rrDPbX*9#wy*#OzWtKYBl=n z)zLBNr~XI{C`uyR>r9Frh%9OC?rxRrasoETF;J^CM%u^lc8sS{8EI4~DsfS~ zHtMb&q4hU5ca4?%(9l#Z;Pn=%Vr}C{^(CfQm`0;EG!EmD>>$R26__JIRsB{zN~9bw z6;}^c$}n|&RPMq|D|M8mq}90G8{JT&HMsNQ=JL?E6xjTyV#N5!CTPN^hPYU4Yb34s z!`@M8{v)i1hp3FfGW5&*ZnZKn2QMaLpHO6O4aN_f>cv*rI#{b)aj9Th1@h4uiS5x2 zpshpFkgPfz#iNfpe*V1qCl=c}7$g2@Y>2x_TVJsa;@Zwj+R*XZ_{e~MyaW;Q#oNdKLLp zI^!J#gyR~U@Ec30AATKkO#0g*O&502KU8jn=jpx8<$6^*@71h?OenUKT7o~{I8^H+ zIK@g*3-S&!ijgrdK-J({V+(%iPwTbNQF#F8hct1XgXNKp;di|w%CVvdup$sY%?)ds1`MCTlus`PJ?Pb*f3H|kk04W*LK+En5Y>|R|V;OIkP zPj#bm*M>4{G-+gfxKDWmy&}bdaLtdgTK`zRQaRbiMGK;^oVk6Z-RS5vnK?^`E7%T> zD!o1B228}27Mt&R>=R^T{k74FdUfOASTEjm zLvJc>CIAwt18>F7}wu&@S$sw3#VS^1(xYHp}zp~r1yjwPcws8VMlX~6%@(trQm znaokKq-$}EHWCn1O7kuGIde}o6&aSA$PUZIh>eO5DXSU^Xqrag$Lb0C*G+tm z^V2Yf&SWYllZAux7A+>HaWCN$oh^ga{y|6?z>u-c&E=};!NR$ewF+x}3T7pg0=G5% z*-6v>S8NQ`wqU-PMA@b=17VWXC{A1cq?3}x#g(KAF`;9;=fI2Fmdu6NqmanQNt41- z-T1(K!}2Y7LjH-en~sH?t5Vun3aQoL*ziyqAjHq=$mZH6%`U=x%~IkPXXMaC3A)7i zdS$d$M}|JN6)ACUTpT04-&A2zFjibRI5sxg=$<=wBRTeXUkQ&oH#AFJ4L|2r8x4~F zMKY7}$fm|@y67)kN<^c|qvC2qn0Yjc-NE&B2eFolxXc=J5|KAtqkG&#pG_H%-T;#W z&FxGt7Tc@>MJGbW{H2jB9w}Dpbyzo89vx*p!UltvU;-DXfy!-=a;aqvIaF=L8zV(o zzBIU{=(k-P@Wum`WN|PudLRWKk+Vn^TMA>-$qww(FT0ESQ6pk_DjV~0C^2I}Fdn7w zBO}G=+}b+AFOri}u@_XH5Pqu9Jh6f_sE`^pa9NYQbS&uM0f#Y&4;rZzTV?*OS)@-} zv`m(AGUs|_BW;q75A5c#0(5FXD5WR*=EjPnHRgj>pOu0}vZT0p_3}8-WQhk|ylk3e zrMaxaT4yYwi9)L)>PW2%4)zbWhDnwJ^9AZcA=r{hm1?x+EA}xR_k>I{Hp|RBWLM(CV{Ix7A>8t7oE0NUQ#Mi` zR#IXyfDqP)6|)AzvY!-Mcl+zLMx!eY>ZRh!CTA?#V{;oSNC6cYW+F)@gy~2#8T7!q zJt@`5m#Pk%t4aO5R6Ogc)~BUD?*lHqgizhxAOzE4m{#EdQtz_$x_?}Lr2sMags?c9UmRSlfeBY$QA?lHMu!> z1R_IBd~nf(NjbHpSsAs~PL%Ff2$k5{AuMZ-r2f%1I69hZa@h#6Q=^A|4A>(V9I<=8 z)~B0Vtf54sQW@6bnnM2;)|5BSA0u6uDkQ<8A6J z)s9iX?6Q$qoq%Cl6@5xp)4zrQ;>1Q1-4?^cxb9So1}W5L0Gv= zeU4nD>xT_En+#azX+!E~xGbj|RmO;kGlxASiluPGp2ddfAC_&kHL@gNgCG4BUzw=& zThcsGBrQT7mJ+~{IYnE?6?5=T;~UXk*gU0{?v2X1Mklr`X1Bpa)fIzMc6)lgJUY0! z`jS-e(raflJWADrdt_vUp3@AZ7~~eCB96F3#)wpK^_y%u){8eI`x@vaR#`r%FsY2K zsWy^jyFx8cS6NZ7&xU$+PiCM>`5Nvs$oJ(I={ERqtt;DtflW+3k1^|vbL>5Agw(=k ze$l$)#89;4=+G2ii=fPawOJ!g!rhg%Yh#|<2%lO3t+!|{3kWM17dpyj?mzZ8@osD=>22 zP&0{7lB^Z6b?V@=he--ia)oSWQJ!f|szb=h*263(n4&OY)oqe=7zd=2Z^^1tWuGKt zUu8A3n@n|;OkVmR#U;W3ntmMi7V!oTxd>lbG5)^1;axNdQEEelX~joB-3#c!U!yq zq}ycC2X-cB(DM+Dw&C7k6B|A5s7aYCTRap6hn$>2I#^s=Dc8xeRx0DIG`L5Sx7@cf zV@yLKe7)SlW>s?#5m07DePrXfW;9_lid?q1Y-A&IjlnrBnnz2YJ*MSL+wwa@)%r); zgyz7dxC3On0|cs(7UqE?4Xr7A7HP9lq#UQJG7{Xj-HuJM^&ka-JS`BA+-Ce$Ck^zu zQfb*m&Q%$i>j84^c!SZ+Rm@H~U6NRi(k=W*SK4Q?+%1}AZCSoAzNahO^^!kVkZau- zq7&jw7Z$Xgqm8PdJ`}fnmDR{(x$RhnT^XdBnzurO`ck8?B*Ze;R{OVj^vFQDF{s6{ zO_d2|cYfE_*QILgci}H|*ONS7u7F`m5jHSssBKZ(u95jAk_NPr@}mwcb+fQF(Cv*> z&=mCEwjLU~r&ygOOR1kA?b^a(mn=Bm(*ktZQ;HivCl*_KMW#SnOzwV;i`# z)>3Py@&i^Zw8L#fT&i6kAH|4gbKz@?y}c~hj5T_Dp^3uU_9aU$22D{V zFBjG+%w4DV@;Vo$V=(KJfh9PF*Un6#(Yd$52QdyW!LSLvq20Exa1eIrAX!1495%XKd>w2&jP-gD9?+Wd3SuNo9AX2rULNZ0V>NY?<;CcX z_Gg$jv!jn|m&1(fL(G`QYMUyy{8QqD43iKwLJ@7iZKX7;h-lS{YF}LkWWu5i*TgIB zR?$N@jzHNdb~8#$(=10juwl*-lA&r-9h&@%{Ogg z-h9g(z@%F&3{1M?8xP!MYmCviH4@t|mz`_Z&L&)z1WDc4$0ytdb)p2kYU|($8lq*GmE|F+8vF_~dm@5uNozf&txj-o=ceN-@RxnoRtmPx zDYkZj$|4(f(R4L8eI%#cdQ5srcMQeU+!q412cu}3Eqv*ahxX5!ODRK$v%yl*l!=6k zba^LSn{dPLA;SJpaux}p;vbP%TTC|Pi!r^}5kpR6e1mpNymat;l0mdScb#EV2X<3% zb9JL@$5~q08LN#}`;)VnRfi?RNcS8+s1!5sZkrIP;D(qAZo##>Z&Z)I?U~Mj;0e*A zjSg!gUFD(C!E#^47B;ytRMO_W$L(6e(?|}X=PbE# z&N!$=+Tnk#Rb{+%q0Mr4-YBr&Y>72hklCRJ->4UJ%+V{uv(+H2jas9MI3bG4^2D}M zvMSwpiWB?pmSh#tHpfPB;gVNwA9|qwajQzG!Zb z3VN2VTv-X3nU;DQ)GI|rtf=SlbJjeR1^5@kkNnj2z1`x{1cZj?~oQtsERNop6C z6RaH!a)V7G(aLx{v`EZm?`W(+4z(K5b1Z@A=9*F}*}cux+PKys2)xCMw8wO>&VIKiH%w;VLDgYim*(1+R_zeJLf|grZ}1( zGE3~|Yzhe?bd1&-xQ`QytCy`-1`rB`FlO_WsEDqU-ZG#}Tv_*qR5uS$k;`;Cc(CzA{t(ujzyBIkj^&N zaWJ6|MRBRlH2q6ZUP>(}zz&m&R!31FCD5Gs)Q&Fc4%@-j5oTffr09e8m|G)ScxmcT-@O2alM_^MoU`hL0*@0YXSS6Gn@s+6P-t7dE?W3%PqN4ANCu@nX zY*)-L9Xls7A1g@1mZoOvNXNA_qYcKH9<<bk9?9Ake!+qq;pjg^7JGR-k1$p;%=;NZqog4yv5Mv=_LV7T)`*H{*s_lS}&83 zc`9Ybqm_%T!MxZ+gd^vPJ@by zFVai->MgI( z2WmPPqXR4qmR{_DaGJ2pX)({MOv2XEkdS)e)GegRZ6l+Y+@!v2?Zj|jZK#p-tXjIt zkF~f-ncDgOCJH-sqq8R-3}2n)A3Y{)I}p;ZbE%5F!J)d|5;s!AwFyEyWf;jFA(S?DkmdzR$x$>o>xM=;f!w<)}Odggsholzu3Nsm$1qHS>VbTH}4ur(U zM1%LBs$(6UW~BqXPQ^7DzBF9ID zl{;j!$dIJB%GtHHAo*6!Ia+yx#9kdSWz8%iG%N*2{8}T{L^x(#B=Yh(8?;fQQ(&A} zA^l7DlNua-w$-#YO^2IT8`FuFJR8Tsq#xqpfR;mayg0PYI-%Z7@rCdi>@1skjg^OL z8)vj5#R*M5cg54xnJALkD!1*0%e)(U6Gya!7pJsL;CtgNnTGuX%RZbdoZ=ZDsCDhu zc>T!DE}Vp%i_90&*pFc4lu1aKb3#>`7^T}DHay-q^N0{@HzvpwIYDlx-gZ%sK+=L# z>Ctjx`{hZB4$8T+gb!>kWu>hnX9tAa4Iv!v4 za*LaT42_2V!CFl_&jcIITovzG#mTZqNs?AmrBL9SF2Y#WrzRdjgqhN=7?K7>rJrdi zWBegB*=;h+-S)*hG!{J5iaI~1;nbN!Bt6y9q^CAeOM1ed9b&YcH#;R_iwTY7Y}+-G zb%u9$!pSS-5lPBc^I5=X*n462&L``3UW(O+_Lu-Pip#Znv$DKVGsXNoVA)7RyV1UE zrWY8@bNW#kTd-m>Z421!_p5Jf)u+iKFJ1JSN}1lGir&d`&9lS%EEKif!b*`%w{A2V zTkJ(wY=V4#TRq$TFTn_Z2gY}4<#n5yGRnlm;qsUsX!#&k;npB$QM3nzlC{}n+m;}* zBFIwJ;vkOY@ku=*5uGmtA}`#oE<8=to$7~ z49xdrcGFN(ovyw#hM}(bo9BlYI~vJ3<+`TfhFn#KXg_uGVIoDH-0OlIz4Z0CPw5++39`@Kuqy+?+X{zGDjEu^Z@CO&1+Fg?U%CU z5n~rK&af$|x#3o(t>lm+YVK(t{|8=qV3 z>hdE*A|f=Cl#6GNRJGzA;&JZ09Wi$LbLdlrBe}Q>^VGk2O$aHEbS+-HWH|?{<4G6% zYwXxJg^>vJf^iNhD`2Kh4929Etx?6JY>h`&+7E5B%+4Ia7JifTcMnqryoH_W);Qv^ zGW?dEPS@EFJp3>{@>G>s%?{bI-O8(YVu$!`E0(PU-b&Pjj_(hUbnCY^w@5^{=tbhL zF3VO4zUF}w4%tr2BNYWSI5??#BwNmIofhohnZ+a9lJ4}uK!nzLL$rAyn zNo-ATo5|j@MQmQj4W})&#ZcE`>3}J_I>0)$Qf2uP3sRO~28sFRu`8HUlNHu#1=2>Z z8Y7$o(_spf5gP1)?Ra~Y>!1WW1>UJs5WqszGy5IIYmVd(5b{yjquB;_05wNq%K zs4*7jN~yjY{Y&iqJaeJB^1X4&g|D)u2h1SzOX*WB?qe2di{@T@y{p`ZbFTZVOYV-l zw^Rql201kvauQ8eJjxf-N6Jv+iz|I~ohu+pk8D!AZYv(BG+*Kl%Z0X-ZTr9R3L__f z)-eUN#y8%{>!zzW{are;yf`$z=gr|NVlVMmKKYK>pqLdF0z&z8fkV?6A2kE6`%`&E zowMZK2W#D~hikgltOE-g9A{}htl5x6^yy$l7c+Q2sjS!|At@niWW_k#%ezw}%7M+Z zdEE5)khVo3^6h#!1q?;`C&3p={yM=y?8rY2d+edv_=tHcGo&E3X}Z(|w61ej!D|QQ zqXVC-jFSS#^MzVdVb&~dfhTDXv4w2CW@=+uwW7UKPxJDIB+)Dl#&12uG`BN0t@CLy z0>n|LJFcqA^sYP*OZy4c>6qklks44%gB5@IMhHv7b~;-UX8aAkOf=Fz;WvGkFM1wJ zVkpF5wJ+0Ot@q2?7=_Qzm}Zemv)z!r>y?e!jA>z)NsJ>v$W8x-cU+U0=IS_3&>`;8 z)aaOSz~1k)LjZU~f1#8&u|oXxR}`6^a)U92sH=J#!s1(NWpuo+7hhs8t*6ODF0)z5RM7{=nbwfy zP-{AELFN3!1!m|P7-to7cmBNzDG@t@Se=UK{S|XWmS}N@??|Bc;bSpjk6Bf!Bjbb= zJD0|Gy6<{x(M=uML+wHOS%!EU!j)`Hf0VEJ&3GEhX6-TNs%dLO3!}=A5ViC2MwET&{t%uzNM%O|jT8grpV_2V0MWP@^oI?@@|Y_$1kYl58dn4K$WjvSw_ zNv^94i=sYTq)HN|jinKe8*G|T>Md_ifCz?TX=?Pu68h=Yu`@`nYza2j?u)1O;tfq1 z)lf3&=ux(orjMuCY99_d{_NzPPFCN`NqFRECfa=G)g~S3liU)w31`OU>>Yp9KOTO< zGyB&j)ResbSa~Cd(ZW&fR;`Y=7Ckj~73^7jdNROy9YPeNALo^SC1Xn6{19+1DNeWN zsG!NPHtOI!WvA|u5uw7jbg=G_39uub)zmRX2`IB^3B}GZ+Z@P@cGpiKkplK@3SZ5N zxeK4qsc1!&gq1BY4ph1ah;rb?H`3oOe`f)a)GX%>nv%)7`F<+$aQl&Wpmi3t(#32> zQ=>ZXHnq;rmw|c7n|&*^&W*i4)dn3+hFoiO0iIGSQ+%RUK1cEh?;;p!8wh zCxwt+Mj49>SXYN$1dXeE9JTOz{<)wq^N6=HtMqO~m8pv@+A%v*lRE3YRd3H?AAttV zCL)Et80dRhxe1Tntld(c(9Sk_vn^p*%wSlOm`n|w4pRreo<34GeO)HLa1so(=>s$I z87FA${dO&DSx<3Ek6Mn>?^B;h*zB|iVF5B6PtX}U9>uqo@vynX(^rcS5~^Y+aS-1g7q`6wokf~l2?6`e zLi1~Hdd9L-h@t=8R^pQ(69vy_1~Wt-K* z8Se**J+&oM&f}z_8OT2pPt$L4Adzsu7U`usSMgrC-d816!B*2pDo;kEh;&$4Zu5y+e>Zc_)0Nm@b^;Y5$Tv`ztVoPor7e3b7+#r0jz;t-e3b!c@n{g7m; zBf$lq3>mrB>UI_srNOu5S4o0R`1>@hc23hBzS1{UybTW4Yvxa6(UJiEYfL*m@$gHo z*RYqA-QlGi`vS;--LkjW;Vr74E=QnO(|lnqyzQ4Q7l-f`Xh$2eM|S=&9Lmk#$J2)0 znyL2T#v`N27MI^xgN}3DLDek6t zn#-U%>^EgmH(k%#b$6k@y|!oWAWW9h)Hqx2NhyJ3B^Kd>h?6LINp;kEMD8IAG3~Sp z-a?pPWJw;UVmj@Sov;zxr({c6Vb2?w&BQ~8E)*g%9)wMd4I{SS)@83b7L62EE@%2` zr%vD7V*KP!btW!hb~bd9l4IgpJ=VS*pF60tvEh3hVU;w@s7d*C`hlrQi785Tv{GUx z*4`&ACDAI=AEa~P-Sotl$cN&dYPe?p$$Fj+{KP{MHf;~v!r69iEH1C1RY%t9538*psjDnq*33 zh`sHjBO5sv*WTDHuvdB5II3n%~&!E`!A?6RY4$ z7kkk1v;}8snv-McXFt&pTp>#6TM_h3IAEnH9#$7A&E=z{V+m~-q?H>acFl$1DKWZ*l8)y>};b@8N2(3QrbOpDy&p+MQ@@FioM2?Wbe#{n~c*k;9(%6~hts*Th&ohgO zIddB1Y+4=Hpdc-rzAMqKf3dK;c;T^}rp$_PW8Ov0&8Dvv{$rc{$F?SqlLhy`W85eV zD;=zL_SN|A1#ic(l_W2OVcS+-C(O~uEUF{&Tg@vsoPns+ad7F}RKADxrGCy|*!Kj` z9p1?4I(ET)4$ASdFq_BPb{JFh3Mr9)WtT%3T3oW`+*=p3)p~gV%ufpJllF9ttGPm) z(^+$AiW)t90(Jw6-`WmA;_X7bP1qZB(1%s?v2Wh`LCUO>B&EHrEz) z1_o?a#k?Q}(Q>iFJ_@4~L<0;6TQ?QU-M7QT7tx-=F(x}kyZ~_ zBi~r*nAg=dpdnFD5tH{dx9CG&;pkWNuVxvll>NT;_e0g!NX9!Bdwo#na*q?;tBZqlP;MGEV#v z>yT6Q$380I`m_5=QH`1^HNW*P7e@E&31vqo@xjwAty64kb$EPOxVTC!w9p=>@E z8_7!OL@6SLjTGz-E6VYxNcs-6R*tedZH>go5J25z`$5=PT%k6b4a21@=T10{2R*je zVH48q#r<|p{I!!rk%?ztc0_TyL(?>C{qC}n>8h(%d}mSf8(F%(q$14|-=neFw>D&w zEoT!G(b!nPlCn~wH=M~oaLWATBN6ucG!t*W*HTYdP}t2^>#frh(e<>$>|-_BK44A3 zTH(EdX}?~d)o*(9Ab#&A-voz+clrJKtf@HmX-PTN77bmwY&l#X8myB9gby~g*|2@- z!SpO_7$YaRrSISkRKi@`7g`-!gNsDI3V@#{>glJu|-J34;IOyY6X z&c8)u1^qaUt;EO;n*k-Z(XM|aR9io&unopBXHr0{fdD~+KJg-z<7=_@$wE7hi_(nh z)Qf#kh&+PWRGaiICJOj5$*7$k2J_p}X^}9Eq>WfOeKaLvSaj1M^5KmHmZ+|~v4KXy zJv(QR{?PiGnK`p1{k17(-Fh`%PD1Q9v8L%@iE8mL=D;6aY3?4+^u*N(KZ?T(+PgXg z8Vg&<$zS9mg`M{fd{DVg^=L2bhgWNN(LwWTa9x(m1uM>4;oa!;B0SthlPYR|gdx#K zn<7(PgmNFYUKq&5a%EZi3m&dg)CiB7EB5*8D{1g-Za1;j9nC!SQ3-TGS&_HX&@-Q+ zR1*G(R}bo1-!wiNj&pF!QzTo2R=Cpn#`LbMoM$7kWZb=vcf)}%+#*{n)b#gvi1a}U z+_H5Edl5(s(B>AplYN$~$R~XpH51o zE9XgkStk7xI^mmf4A0hO+`xTDENR*pvk0%9Q6jOw!sDw%=FVVvlvw5<&8>A?khN)K zN~9+8{`Kfm?1T3Xlt20=sA&sNZ1LN_fyKu~`7(rfj9X;|UmwPzge3(6`+f|fh*C6z*%*sGAd2!ihw{fjM=MTv$_5Gz--m@I+ zAU#Z6NAY9sQxC<+GO|w!%%EDaXjp@uNduE9tE|2ullE_3z8sc7nJge#a`^PM4qpk- zri+rS^aU2A3`Hjc}#QSvHQa565`~dIRWF<_Mq+PnnILLFH?q_s-?Hx)YHpsfn6LS zuxI;R>DttJSwAJM8gWnxZ>Ho@Hia2`caEb#`jc1jLxr2t5E5O> zz;2qK?&Xo)R8cY?R>89!!rc!fKlI$7($4hPqDXTrLDpb79HU`c`b=t^d)-OTW#&2JC|SD*N4*SkNH;1UmA%mR%+jYxtDDU1|LGqAXJf>lizqgA_19Zw4U5* z>rkqtQ;7P;Cs8)u3lW*y{l)TVRVh;VixF|dwvkXZE9PG;@fnqswlDWjTPAMu?WUM7 zfMkV=u|+K^+bgk9XVW+hpK^72(~@%h>u}Pn8bx`5zc(Zmrk}X)IPpu%dXNu?=BY@g z7UxU3McUZ1dseL_D!%Ikvodgz%JzHOrYAqXqa_lZLVs&_>a(yuk=7pO#HZD=aDxEj z&QMxn^4N3lYUJMDmCpIAW%lV&aUeGl;S^9%BJi+JA%PCf;|mr z)p@*Do8#(LR`VrcJ3|>8a^&nsl|Qwn1t{NX3pF)e@a!ntH@5>N-mr2K#iNjTdC|^L zH#Nf!6>&4PSL{M=hYz%pusfnmNZl#B5AMCVa#_#fuH|Q)rtd_{p;qdpt;0@LzSxw5 z;IV%0fggvC57Zu-SE`L}n9^zUq$k!0YY;{DW$dFBw$7VAOqFrc07lB2OIszuDZThS zys4G=lHX)55GhI{{rr`!(D-Vf$aXCs=z6}#tnOk6W&H6Yeeb+$Wn*J?pzGA}jg79J zT6b~T%Eil9oU(Z7(lyK0u5DSps;6s-&1`V#OHr)u;{0RhFJMcmYuP%{xxzj-6jT_W14v3%uM47Wun+(oYj~7tb6Ys-jRU%ed=-;=&8; zvcxhom#45sFjN}u-^d3eOa0|VbLf2D2`wwa`WX|Wa(dC#Qz;L37kkRXRaUU|U2*LKH?GIc9V^f6Y*{_T63$T9X)KMi=rS^DmyMJ73zGix zq>ho|?30S~I!|m_xqRiajIZ-b$F?kSW$EfMKZ+fW&1LRd9XV0D&tzfjr17y0UB_qT z#0e(AUGXoRbQh23Y+d??yAcduFYtB5`K5Ua=pxyx9!}1$K>~`*9oPD0G`u@;3N=qZNIZwL#l=QDU1_ zrGdBZ+1-IFqlXw z<~dXeTvFkk+pcpO`Q@BSIeK$sDm2~UeK8*R2OS^uzDm@(EOa~LXf=MuOe-G$ty1m8f zGuT)xS3k!)X;Lar$zaB|gL>?WE3}(xEb0j%L5G~G8||9A(l%}}N-mIXoY;UuomCu5zYD7uY6u1AS;Q{C6efH*CriCzG_h z8e~*siJqRU0Wv!MA^KhZCHln5z5-mF6|Sb_!nW&-q0$e2D7@7S}}A&TX$Y88UN4dio$G?a`=Ib1#cZ$Q>*p%W#Xn+!r&}^uI z${-VO7QXRYMlShfQH$=b6k`rkFKI^Cd zf-sS9<)P@7I3P&nkxVM(6)K>wJc?!0vR~t(;VX@aP9H3xiCcN#%=v)-@^k8+OOF_RZp=2qIn<;FDD~!c82gcib3o+d z1BfHg$^fB9{7VHw)s)9{M4`0bDMC=S)QjCJR?-wCJz{ZEbBAe`n*}Vq*j0cBB$|<+ zK;~tZSeQ;VX&1IVUIbSCyW00552&C{$R8X1DJ`_o4l0k4cl*bOCl7~Ae$hFU@kYQ6_++{c} zcR6Yb?joIHq^1hej7u<-nUksLs&4dw&@65Z&P<{^xoWErjL0Vn}?K+#3GO@HUHwcpoxF^ zZK2XsYsbv9b_mKun05SmlP|*+&G3RTH2Fj`=7r0)vgtfv-_6po5{)7g(&Q>UoJMYQ zO_4pu5po!?x|^)q3;-(cG7HQ(21!eKE|PKsrB7&v2Abj-tnhgx3PcyE76oG{MLXlSxWh%c>L$Zoj14siP|&qU%MVIdn%6&sd?` zNXeQ|M?AhJbI+KEWO5mIXRu?{-p*qPY7$wLjUo$daP7vOxSw&`6Z=a^$Lgi0by5nF zDFqFbawdpQuili0QHl|I5seM;Wn*imL&BjK*ylzqwkXM;VKCb-QQF?rzUyQv+zxBW z{D!GR${vWIBjijbB%)(Nq`t);8jY$1JJ+w!y7uV61`)$_NFt;V@?vDuJGDF^d`T;E z)!9JnUdw&mYiJ9m|D(C)a#WB1OKgHU$PF1{9j?**R+MFYyAu&llX`xFL`k2jiC>(nRx^rkZ9(Qj=$-wJS9sjmD|6D5CMnu$sG!J{ogO z&Fx}SAs2v@*De`;SOU>p0A-5BBL`s|Tw=l$Wn`m)C-g3!7=Mf&(VeyngLx!YmXcPp z^4_IkJCwiOXI)2?Q7Hxy`EP7S58P8V-KBLJZJxC1j$4C-#(4cPsurt?XLzc2@i-lf z$(YT^*4)A3|96P8aX43;3yj8ntvK%No5~6CpP}Z4Eg8dQIOG|6Sn1Yu6HeS}jhZR8 zMt0|Aa+NxQp}`#Et@PDiDDR_bV>+=-CDyDs>uvkxD9+MwX8Zp| z)oH^IGP0&<&tPFc{0Tf!JclP1z>hxa`1$kLaZ)|kNNOV>&qBE4;^SX2Ts4DQCvANk zsNx9bMAA0kx3i?!dra-mn+c}MGk0*QRHZ&ivz~`ALcvs;fduPnyZIb9vfwf%E0|7u zrE%6PH8CYOkTw1oa-|b~hB2q?v1M}sA;uUxE>GH2HQbU8GLnnkzXUCv#)&ky;C*KP zA*@#f6QOmSUo?~OEOjmR!-o%T2oTTAJ)A#|YlnuyF@iv!Bsfz-<(HoiaUD9C-9tbS9V&@OMzIb8Fy!rjX2aG z<3wkJ33w42>!(W!+plAe@r#sKl4wr)At1$3<_D&6-w0WZ&v_IFJ(-k8+8_ZBE-H34 z4+%=?E-L<>b{t19o8B>nO-36EbiEW_-MX}tMPy`ff&N7ail0hgVyn$3V1}naGYSYz$6aRP&FGf=U~-h2qN6#0DHRwy>~Y(h zzJip=3Z-qBD>XyEmM4&j$pspXby8rNsXc)0##5L_N0<+{m7;LLBX85AY#gQufI2k1 z1INQF65&s+_ByvAd6E-U-bowo*x@P-PvRU6L6owgq;0MD-aH&r4mH3-R}=SbDF?l- z(Jk*uv1=mV7z#NCU1;7+_l(dL% z1@oaw8Jc)wRe~hc9|J`#81n8TOCve@sCmym!BZ>7GI{0@)egp8-kWKn^0ZgROIHEq zV)>j+x!P_T%q422q&;&wiodDtWx_)-%nb6nVfIIHlq>k#DJ`MEY48rN*ku?Uw6}+H zs(J6ur6&8NZFr3m?Xcw3eZZaGB+vGYro0v__0YVJ1u4rQe0Y@hWX$DANAZVNe^Ral*5w#Y zb6jy>zH*ORq1+7SBYLzD7lWh)o7h356lUjnV@$Hnn`)V;;EbeK;?IKlr-AdH$fpf3 z40)%~5{}wjW9K$cH6xSr))uL}#rV>+!~oB(Or-(gNHlN^-~v%FE9+Re&SJt5I8Msw3-mDUeb>Jvcy7@oXO@%9>s2^O?4*fB($4!00Vk z{Qb0H2H8w=rvB(`kH?VkS>(k_o+~$<&xUWzj45(0Z;PoVi*0zGz`4xE)a)56mh-aJ zKe*imG>GQG1ck0t*UUbHIYT>C<(-auC2o?w%74%XvZc0iZw(;M{p^8?GzTE}TBfmD zF@w3mMBL({DVk5?IR*+(Qs3=_MnzM%K@Yw5boQ!3*ULCWUT}AA_U`e5vv*pWlr@e~ zT@Zfj3CHidL-G_!K)q$wa;wuAjFZ=y?2*MM3(uIR%_w3Oqmd%rusFBD84$9kf%QDWSd|Wse5|V|3(1Gh%I9ETi=A*pnf}nu>)$fcnCMQkv zAEl{{#zBc|T=4lYk6)g!M|CrjA&>`j)~p%RwC%T&ybq%<6wKLUsfsuf3=HQIrzh$7 zqYzW?M3fEz0XkCc3duI@@;s$hCWGDQ=`_`oD18(PZj^8(^AS63Ja%)E^nyo5K4kwk z_822BZf@Oo39l}B^RlLVP;;B{_H`fU?rN{``(UUML$Pi_5uG|ysOPDIZl%_KeQ~}0 zomiGeb}^J4nIg8^xfRseoG2W0AE9Agug$0HoEtQjnIsozue+1T9?30i1b7>mo!YRW zz&)QAnPeC0oO^?V?i+bUZM<*#6Yg{Ui;>Mc*o-vaX3hs-^zkmMwW-x7V3$eqoA zXoGrC8`VMshUD}zC=qoj>M}yi6r$}g9D62?!N`0|RCQlQY5J21X^)57)6Bv21c6et zDTHUFLlLdfPRc|aHO14*$s~J^k{U&z4vqE0EFMOsL5yK?Ey&;&UdPE$s>&@y7Hup@ zdYY_B}I)lN}KfZ z8a1hgxtn?e$${;3T4Pk`2D%7k>c@gcTVBh#3)9^*N0Q9YFa&pr@vgWQI|_ny!Rby<$>6F4iL9E7i0J5!Z5S zY+|>oT60e(Os^3~A`WNUBCV4|sO5Yba_gdsjaiyRBM1|A%dZD1xU-tEYpUmTgH9P? zFyK_~3|9?K@{*BOxIUfoPCwEq-H{1}==*nc2XU{C^224x%D9DU!ba@1|VDFn(?CxXcE2#ei~QzV0_eZPp{D=ZcDU=;y5GZiDtG2s}d+N8n)-M4w1x= zpoD)fXZ0)ly^R5NU?i{UGS;9( z?gSCOZC_rioh2HEzSP>Xyjz;-ZqBHc1z^FlUFf1?XA!@>ZWz^60;wb+Cau|6)iex@ zzC`0OiA^fvLz@&2n{1zU7?pW&@zfe1Lg>84Cs(AV1^E3{ByE;OyisVY+{5{qWY$4APvDG}5X~Q_Jb1S{jieXYA}#OptInAQhC_}#Y4RVu^W=|+qK2> zS-e~Kf4>jYGnt?IBD`Ik(>gek2`$Thado-;UrY|V$OxMPI@h}yF@3^$ZS7(M`1~D@ zif??5F5iMpZ(Q7yoHo?R78#UlWl$E&ycukI8AmNeq$HNeQ^qV;DY?@QOz`6Q1%fb_ z_gtCec?jdNQyl~vCs2L|cU)QL8V7S1*CPL7eR^mOc|rZqX)MHw@t zZoy6G2NputF4hPn3|f>Ct3Fm`zDeYVC^p3_N^&=v$bF0{b3+AdK!u{raR(MbU2{Wk zaLH{W6=y7-Nh>r+2lxbPE`lh};>glOOWtM5GZ`0KoJ1n-dYr zPa{&jl#AQtB94=bibmgN!{V+hJk7bS`^-IUSNdvYlo4<@*MB}{*eG4n3Z|OtGa|-3 zY1PH#6BsI9&_8Tu)+GDnf+n~PKd_>(f``vbwGl-!3yCyI)3RQhF2oGlN#%$gyV5~d z6APwV05x|(l*AKEad#<~eXdV`Wz>{Edi_j*(P(Y-k*svEP;XHu8{lLeNb4J4G(LsY zjE7ugsg7rx@Kqw^3D?2NNXxP-W19-(<3mht)khk!n!=Mw)+9yM-7yBqH;YaqOFgd# zBe_!UqI1&(i|IS~zb$V(*rOF9ZVn;Q0OkP?O$O#IrXNXO>7@sW%{$z0*nAUinGfLs z{>BxWg0A9|tW35Q%Rqq?jB1%$nZ&K8Xhij?AKOZQ$Rc$UkpNe!y>uZgnj_CpNyJ47 zX%O~LgHX-C{`(FSD1FJ5P$C^Y)I>6^wmit+S)C^7#rhIi{K$6#Nx{K*H|~A;ZJyby zX6^joJmgR*DyG_DoDAlryCex_c9+))zry_GsmjHTFj#d@~3= zpqMGUsO^o!&?cPHHT*QUtxEpehvh2s5o;{?WLHie!v`+}bGYe>tC8o^re>WJ zGdU}(O{?CuJ&SvmFX=sP`HE!>oiGyG&m1bP=RH$XGLr_G9IHfpMr0Gilz;Gl?OZtJ z%{iKxN_>zPfJttqNx_~Cx_Lf~twLfDxe2;CRHUXoeL+~wAYm#kq|A4X(8#^<{~rg6 zs|gP<>}&u>Cf54H5Yk*G>z<_LKzv2 z(j1vvYWM1AdrBX-_qbo}a%LPzTMo>QE$yL!&gR(cBo;@STc)!DS&bS5^27DYryFDT0tN9MYi?G6`25iQ9yp z#shg}D(+UfrVs%u^Z_^iuKlomblknZOT`_T1rs%%D)ydqG}DO)hQSz6VMq-YKsQb9 zIj7E(L*t%#O88t)mg_H0`D#kk zO^>o5liEp)kjg$J70=0Ok+QbR5CbRP0@>|OP~KPmy`X46G`TDNOou0mos;^vX?T0e zMGNn~=tomZm1rH&p^m}lSku#c+eY$tr~v)o^nEej2eL;Di{!{@m2$hVkOJHCN*30T z(yW$IvEH#``aNFh3`z?LD2ZHuPF1*rB8f)LliZWQ5N^kLY|x#swX7ntU793o^8ie@ zA$ao;;YRhdyE7#Xu~4d`68DrTsr8W;zDjvs6&s+J^N;#F_jC5Jn>JG)5&6H-U)q@q z#*LQYO9C!Yq>fN=L)=9{T&}FkrDu(%S&`L(?6oc_UCFp5Dj^P(Zw8*eVmbzF_%0`Abq1|?M3;hct&R55wrC1^4T zg0L3nACY5_M5$(jwVvr9OK+e-kuhxuVr|MTo;pcBy9xc!BIAzJFCS1&^7QGvciQR3 z8sC12O*4u*RcpT780PLBQ8LQt`qeEn9BPHY2C)$5^VM|F(d;Cw&_Su#(Wpbq`o;hN$6mrsroftW~%Qd9^_<7+l(H+{yIBg5GxwctIM zo%k))MLd%iK;jTgGe2s&5t*qbP&V0tre=9{cS2po{kLhQYS5r3I8tn1&b-x_qIRGJ zir_eW3Il;=R3hezfyxkXU5VgNq%voJG{xQ2kmAshY%Yb)@y^@>!b@)%FGUVS^Dn*V zchSTf1i{4)BUf2I7YGYw^Uu@5?o1lFxRw(_T0P}x@Ets$hA*@syr5kA>|dVA&Ak~{ zaSAX!q#pU_Vi1+{97$aZQU%(eQ#(vK zv#l5*ZbUvp#BVyJ(b)iumly$e=>T5SZtO;P)CXm~1ae^{At%nJkNLqji6Z|1rO13s z)<;f@!l!joqu$|yo|ccsj9`U91Pn8;xezin?#L`PLT7LsXO0HMzKhMm%E;VdzByf~ z&mC{@_qOzT@D0_C;jeU+^u6t)bc?^U+4cXmcWys&UDuhfXa5y#Vl)&HvF%*u#hwdf znTj>BE)l6gfWTA z2IjwjK9XH;2!bDrVQ913Gj%16s1qX+q1x6AV4SkObI8dbA3&0M?m@q-0_N-!!?Id7 zeJnhUR8_j4#Xza;GhA~6oj6ZAiowck6@e_dfR5 z39W>S&ZxK%(GZ{Z^_~n%bT6Z2>Q)uO|Atppo{~Nm3iP`q1PkkO%PVT1Sd;?_#o&0F ze}$kNeiZj~fJ6X-CIvTfg^dKiSyY?8*1I>S(+-H7w58Q+%t1~d6mm!3n@q&yR^3S- zm$a%}CWa80SW&Hw7_%?}reFT_6kzrD?ocvNSngvcV7W@vUD=vw+1--@>M@!%sL-auD+Jg?-gm@I;H(Q0h;S ze~H5bRb&xX3~S)cF{W{Nl90!ac@Z`zC4;4oj$+l(kfIhHL1tb1dl#>~bx|L^XBuhFur~XQ zNLkwwW~m-Kbeas^*ybBepw9E+%W6)?;1Ly1@j^a3Phta4Buvn{%`}6uHgMF1((4nr z5TTjV*J>O^x%-Nq_3jp!bL4T*JX_S?%1~twkIr%FXn2yPtuRgdFPB-AY*3DRzkM%& zkXWq@0RF@^?okF+7dijttJi*XaOIERz4H3O>ut0exLMbWa+GL{gYlW@u;M+v7$w+2sh7J-=vtMVzf1`4s^ z5ug6k-Whl8or)J8%_mS;A`K2yh13m4<;`|Bceyv+UZh8O#Y6mXT*F6m|JqNDZGi)Q4$661mDoUcg`Nil{=+ zj4~&nQLDm22_S*9EQD;NB9TxYaTXS_!AaF1uf-}`=t)#U?t@im=ytFP-AX$lxT$Q5 zn!+Akl-7~Sy0gO3E-)O^5@XDhvMUnh3=)V5?aTpoRBQ=8)j8w@ zPkTiLHvpEMXG3Oja`)BSx#UpW2nP)iwnlAN?4AOaF;R^$JUR{yRi#QtMbsr7U|2Y9GSM^;Vmy3@f~~0o?m8Gejyi;ZVOHsnlXlG!R}SaA+?HAqFkH2rzfg!f7~N?=sa;m(Agdo|QxZflcjC71&<2ow^5 z*HOv(1q_@{3pM>XDZHOYFz5k7meUz2zF>oUqRA!9K?O84?gg$qGg}+(3UOGvlr7!A zuqkPM5?)KPogwrtIH;_YTdIXq-wK^&*X)4r=9{Vb6`@ba#OoGidb>>|i<0I`O*VjVCn9aZv``YG&Xa*iUjw0pc7dREx?WER#l`<3&+c+OuZy z51SnFzaKgQlckL390W=Ccx|j90w8k2(&Glmy6V)+Kb$jHPH`M5y9%=Gi5vRMK*^xE z23^I7>r3xCH2KxqSc#ETpu!nOh1r&oPg|pdLj52SkP1?yCByk0`A&yYCx&T{N)tULA6li#wPD? zP_SEr!~Zd!hzTyxhr?0iVIqcV_tdPY5R%>Ni7lx*EkRh>>|v>D3yTPRk|6H1Hna*; zU3RfrF6Z4eA|nf`x<49C!K0BG)2j%6ty^nRF=^pzJ!_W`WKcX@8vzqgA|T(gYyg5( z8SG92&_gSpGz_x71_l!1M5xnpP;u+G;?qs#wO$N4G(aIM?YtAZRE3RtcMDm)ZJ%x61&p~l^IzpgL0F#u18gcrZWT! z5rW-j!aSzd zI~7N|jJ*o4CTwZ8xY+Rs$w41KGNxnyKrh;R5Cus8L9vVbckdltm-~fMiW1llu}$Zs%~l* zBcEY?9^A`CPy+U zXKw50mr;Fzff_tu^@QqHB+>C<2IYQ&Su%9PNGwIdWec0k_bl{j;{Luiy5v{42?lth z?Cc&s`F!%i2kV-H3EMy}&Db&3+;Y02lLP1T+%ft5WtFd$vF)B-fx&PLx5?sy6tffqy?xf{F+ zOLWv(f$PERNz@c9LSJw6y{)!2j=A`ODEfGCO<#k#^jLO;QImS^AJd*|?uzPhw17#0!{{0K&F zxdm!F@e@>tgytOfViZ2edc<=P=K@y#N$8{S57${O^bJwf3Hjd7wT|zS!&cjAu@H>)o{+wZ>jj!mWji<2wa2aAox(&(Q1Oq zQbVfEPxk)R-e253ym$ZR(QCKw-#XG)F=13KG^8^u}l4)=ri@*(L@Pvycy-S6k zX9sj}O6FHE*TBx7MAdM^r3H@pBHm$1J7%)LL`HFxRaoRs;%q7Rq%%k(r=N@$s=Hoy+fEppM=UYLY*x`m^#V89RJaK(>;}wqA2`^vl&I^U zq|t=IdW>PcBI*K%JlDSr$X^wEjZ~^;InRd6M*%j{CdW*y!QRQ%I099b)9tsg(u#20 zk%$Tdoq#Ao z@`oom>1y3>-mnQ&ALyef9n%9Hti<9B&~F@`GE@T>7e5=f{%1Tc+`WDK=z!nn;sbXV z!*nvuNOD&U{Vo2A(M4JKH<6H@6-6#qV}DzB8n$S4j;9&&n6(6k79eJs0zuX$EEdi; z`j(8+5fQ*zO)6?z0=<5X9m_=!eEM}oMAc$7@)9owqJ?^w56`ST0#DC>&D4-lg&p~< zv@Pl3ct?cD4GAQcVua};im-b|u~zNy(3e@2JE#$v0%o2&P4OhS90R4B8t2eaiK5dv z`x`+1FyCNu8RtJdxfB~#Y@%VM4RJMH%Q)l!_K%FF%(Ybn=>+rDNi< zCPMdPN0Rn8BBImC_w1p+UJb}-*E}D%`tp95nIk0*HG{DZka%NyTtG}( zww*LIP`$7d>yQEVF6`x@Oq9>wwBrpJg2Hk%5#9!JNh({BM7Fnl8X&6T$O>YCH7F+j z{0&U;oVp5j>;qlVaICYe6+Zl?-^+nzt5>C5cKsutp1Sk%qmOUjTKn+SXt+s%0YFD& zBmr%dRbzvo!Q|HNo|E4gjxW=TCBc%FWrD$OZ`VF6mSUdCT^NRyVu|B~byNtzasS~2 zr+;bS4p;(3JB(k(?B^Owet@;g8{j&3g*~sw&`w*ZsviPDyAfM~_n(l3?!0h)#H19q ztP&x#5`e(AKxKAM_BomKC~Te0eRA=)Xw~hX{n_FBM+ZmzV#-ECo|F5Csbq=3p2usT z3!cQr=U~rOoTcO*4@DE|_5#6a*wdPn3xIwOj1kSY)LnxgP_lZEqVj==nlgOD6Q_Ddcc!(*(K4nh0qiH` z7|)$=ZQY$8a$mTd#Mpj2M4w9-Ram=;Dguyvpt(yO#!3$7XP9ufT&xdb^% zQV-(y(Gc@>)tLznjZ)2_#Eo4nM9k(ZOqO6-tNEY>dhFoNNPdG4={6Bu4AIM5J5zd4 zu|vVwyf=!j?22-@tNU%&5xIISyqH`fr7Xq%SsV+cQ*}MYZXz0$Fy)15 zpQSf16|Z1UPS`I}JM=KwPeLzwP;`t0`C7CRBE!+2-n)JO?)!%a_wIlA;f>F9{a%-L zF@Mtem`~@t();JI{$pb%c z>_>POG+kUw3))Zl93}RjY7FjnmakcPP(8?4g)QgCjGv)HEZT8Y2L2-TV&;RN>PPCn z3M5K3;P1y*Hz%784t{Y_xRN4?S4gD}up1k}?ZMtp5w>-~vS2>8@Y{AR>*daf7D!9+ z5tPt{A|1UU>CwnAZZ-E*+J5oeT#rzmRuOBIr2iHxsgxNi&99j`K|%9-@^PNDn}wFy zu0yl&i3~GFFHq?hKMeur;P};_-`hX@?8cG)=ydh45xP{*xv@)-_S6q7&DJ_8nfl=S za%w9ANP@HEX?i?{k8{(3ytV!4c@JX~7MV9>>l|TsY~Ay{w2FkmFmABu-Y`|jd1Ept zNF1fC^mzq~CXPh@``U~uG(m#xyr!B^g~}1VY$}wX;u;FjEJV>ZSMY2d&8<3WaNYu) z%P$8owHb-Qy4^Ql${~#GRV!Z09Ye|^=vOUd`tW*=$%=+VmaK^L1zr34tNCkexS)?z zU0AyX= z0)>Z}0%;JfEuYl@OpVbj8YL21G@_0N2akugq$^GgL0UvkB%@@Q?75ZGrkhRmAW`_$ z7_V?}1|fR8m=|Q1g9RkK>(j>B;;omEpP)9H+58%zoLm>XuBs}KDhLP#a-sV=Ob594 z?8DqxDpV0L9(84*>~F1;xCN%qt`tcw%{;=nrY*y}mR8TCu`(Q`qar|V1e!+%5Ei)& z8k)6?k?vJTjQS)rsidy2sWP@qE5ldGj-ZvPt@vY0*4xWb_-v%FWvPSaC{NOmIac!O zd4-8)MPlf(>IG|=lKRYDa!5FXNq!5KqHt6ny(APB>+v1-SVv5CPZuZ0-Yn95Z|_^* zYRUcN3u42HXE(J^|0sDVQmQWXM8gu7pp9m|)PjsnP_Q@Ou~LXBJ|CT=mm|a{hegQL zjn=gW6IsBdPaVsKH$sH`9XZ5`-8~ievmp%$p*Da@xuE{mKSmres4eSnl^#=0g){6Zp`r=lQ|Q}JJvofxYPte)K!3U#<^%XI=Gqzk&+B- z;GQW?_z1F_Vcm66t-DsXZ-E75fq(zE4Fu}~x<8}4%*PbV|H^`-@NmNqVLbN`& z`&XVBdJYCqiV&7Q5Ns4@SimdINE183!=^U>u`r`dYB>^+2+*)tVMPMebJSQ%I5IwJ z6%*Od7lVm=Yi0xH?Ebq`qD25x%f$fR0Tn>~MB}f+q^Je!Ch&b(5uDyO6*ebevt-%J zL(SIZ7{H#iWPb{jvHG}%KIn>Td4GfmAP(G#7)LW=5iM3sAYdujI4^$XcRy;m0-7Hk zco-v+Z)`!EE|1f7d|OJJu*%T8!NMYa}s@UDk%@XvXq}?#Nza*iNxCCj@VEvW>HId=GJ(&Yp1(|h?>hkIk{k*Da1eH2P~8V}>FCg4F>20pFL#G-usXKg7L64%;@PJy zku}^}hWUS26#AbPV-Syv(B~N7lcC{4o=kMx4Lk(g)XQd^tgkoCNgEd~(Kskj87|w! zUCInjMY;t~DzM-3$52@WOfH9*g5J#*gs{orxeC5C8+X~S7?mtb-7NIE#VJ< zw|rGo5WV&Ibnafg^YM*apY2`#+5HjgExx$`YF zam8$|s`+ZdUcLZBaNN+WG{j#V2*Or|@%yK2pJtqY#u-kf4i;=f!tt||ktx$eSJDHZ zDRUf72SKBF$ps3j(~K)!v4ca)UfI~$)#I|<01LY0MK?PaA&B~;HTp~_tm*@ZD^vb3 z!~!3+VI7;11;Ny1M<7H6U0IM$!^X+}Fv%q|1A;>;h*P})7FQt39WpOyrN`4q89bkc zqwZ@8H+GOMY?|J<4ka6N1G(7W*_=p;ogMJGi9rE%E2Zy(qdcZB zM|dVlmNo>e4=b-yK%r6`(@Y);>cH3ko7WT*Hdav+H&LK^6X%q_0Opw|Gk!zeZINx& zQj+9))FqXjmS6;@(z4WT&S@BvT#;c_!U!H%M>UcXo*+?18&Q~x-af_Iq2P}-ym0b6Y|0y>)L!x_scXLKY1;Wp@SMZLq7Eq>bO zc-%4IV54X{j=nq8GSW`Mr*~>XlcOYQl0d2fgz?oR^b;KfHV6QRqG|;FN6nko#BpyK zGt@G>s92UI;wP(vgX=eM#s?K<>7e?5-j9ETFYJRguGL8#4xKKRD?WkxuHILM84m*n zqw{MM5HZ5(65D%o;wMGA%__DKgk1wmRYsv*>W=4}75P>HX*(gtX7tC>JzRZAvhpRg z^cDf<=~hk~q;WzV4_l-;Zdme0nv;S<K5QnP%FJsoXNat<><+l0I+DI(`zhQELli+iZV4xBRCAY?iau^p%~Fc z16%+NpQz{#bp-+JQ$SfudXjo@r7Dchk$O!9in!$O7OeWyP}Nud7L3`O+*F*J=0Z9S zQRSiwwgA$7H%QxTl6dQ)8nOsLVOmIlpdYCd=v`pT4< zAQCitW#pQsQAX{sjie>uiH=ULe0WV{UF}^Xt(YBIYh9So9FepqLJ>_`feux{A|A$z znuujb%og#wM>uxi7HW8O-Q^LyzWClt_x7pcFTZqG{X&hQIWTj){0Y=q2cb>_2<+eq zkEKB?;_?n)Ic#8A;sTQq@D{Vu&$)n-Me(SrL}zvTZ-%rd6HT+ZCc^sAQo>41cofqs zPtd`m4QX?wlwk;jqBrrV5xJo-&IF32bJ7wJdm1s4PphD;wuckGL4%=4YR?rTz}akF zL=gdzq%yVL2C$Jj0Xarm#PgV*L-^oESf}@{usPT+fd%o@a@=>AKp?c%I(CodR0M26 z&Dm@5n`E6>hnR+F5WqjjjyQYTteOoWrEkhD-_6}%v2HgvUE_Wb>G zaeuZPJHM*58=_{hWFq9Bb2@B9s?Bd_y;Ne*ft9z5Abha{cbl4?a4)b$Ivs(V@7!>>Co%8(rKIktH<_ zMb2RNR$*4FmMo!o$Sj7G*0snBrKEJ>1GrHnCvfPDrMv7E&autshT*@3K?b@wVVA+A zZE`DcqN!9P^z5aeiOoKo_hpPozx6_JgV$D167yWrSC_AI4!;n)T;3LHB|8@U2X>6f zX*|3kuf_OQhq8{W86&HO)hckt9os{7%N@3reI7qCA0*LKr$vPHj74jyqlSJe9| zOru3$Y*mkCj0Uq187c%DD67pZE8?j5{ZvXIFiyy)W!cZ_1V#~MHOBxC&~-z50j+0o zVq39a);751{OxgP!<4o|NH%rMmi=)JMvxKe3=y&s{8}QoMLpEOI8FyJnI>x4{=t0( zbj(dmVqrlAqH}2#Hg3zCxE`Xm z)rbclJpAFZE-PE#VDQ6omCvst;ODFn=SW|YWS3+3*0 zODkI_jJmVPVM{CJx}L(8h8LFW-JN@T|MoJEm~J;mgaA`MaYAhCs)Bh=c*6C7C0N$F zeYx@^SZo%=sK;1i)ocW?ZRi`TnT zOWKb!ybyczl>xk3l6@iVy7Tk9H$M89FWtQyfmE~t0Qs}w*SN$mMOJ*daA|J=c>(m? zfsAPW@XFQK-hJbpYj3>$)`h*--hS)#4eq@-3*PwQmA9_F@%kHA22MRSVRi=S=Ji`2 z-RCdOZ;TH?co>&Azy78}L2~{0jjKNzad2nQjocR%mYskd-8j0r2`&Bl#lf{VuKoDR z3&LufbwS_v-uU5#wS3&*VWCUDWaT+RGXT4BcI%*+n#(&gCwVI zaxTUOt?MHd(>aj{#X7AEmCY(5H^Fe5z;P;wA%kDS@D(e#(HGNtj@dyh!yq?Ih4mF% zaB>jgbyYYGX4`?r8@*(0ySyltJkk8NeW*lU@jl$e0N)ezT?7u3b5#znUEoRabQs#NRP36Dcv@+v;a!O0D~y%3*k@a>P#GZ zp&!}tpi0Qn{id^#qC~HvGQkM$`yzbkstR4JGODevU}is$E)OhnTB@94S@^2!y2c2k z>UPPj{+*UD?2|{|#t^89(Ek>do9A&Rdb>F_UY_fEBUVruip!>=xlE;rKkWB6_5uA4 zCC22w-6mm?>y8TbD5q&2h>?*I_o)YX2LxqUpmG`|tBR|ZpX}}5y8UN|fBy5EY(nN( z6@}v_f05MdIXVa)yE&xGv}X`Sgn%DW0PpGs&lH=p+d^$j79j(~N&VJa6iGL=&MNnC zL4 zCK!SNYx%RggGqG z$9(WZ6(wG){^L1Y+IvN7w#as6TwEQ#AhgpJ zC=aPnj_I~1hUb@BkSKW(9pQ_m?1VXXOds9DSoq`{vEmyJYy@HLv_gz1aH(P!VccDX zgCAxvkBKc&!*;g5wN2VH z;Tb53c> zB_3l4Aoe!%LvN+dj%v*AvjE8-R@pvyoO{;#>)(9cKQRS%6g)e?b6NvYJPt|_RHBej zj=-nyi+y$oib!J_NJWx{t;7#$2!R~BrkNae`XuFp`07l3*a0#O6uS_BZR#()pb>~M zJR%LljCx~gxPJN^I`Cs`1@kqf1Ss#! zKrdMmk3A41kE*koj`O2C_`4$nAlPPrlL|dfi314ZpRog?C9tU8i!E#dG}0HGa-ein zu#gi<)38~|DwrzO+1Fdbyf%DiS}w|mD3s&cenM*G30hNM$kzq;0*Pw1$Z}3=m4M^# zShX53ZN{5^*9B^V3I!ABT+?N)ktX!5U4k^s9=xg4i--~v(e%9!<+xi%n*Rb z9)#k*?t0d`Ky^|EMu^2N7N5DavG#Nl<}#cUD6y?-7`#Rg@U_$g7~IaxRVD*lv4tJ2)a5YCArBZ-u48-0eR6u}z10uj*3U># zR3;SYUkt!)fWdNDsoG`^SUD#Mn>35U$iN_2&N0usY%$lfu!CY_K(mBJmS$3+DN_c` zY8b#7ubJBJo_{Y23yfk@npf++tP8}oJ{fuaUNWj z=Nr?7N)dGx3zO2p!(<#~(ZF(UM#pP!zs64b6p85fcSTta0W+pdZ&i!YWUng|DHAb* zzfLn}J{9{oJR%KJ{h}!JDJetw5YxFOlalmOm=%-@n^9EdMp@U}2~q*CcSa|oHLm19 z;_*08QtOEZL>qF`)U1Ogo8(W*-Zn*^!Sq(%roxFR5KaC~mgA6d1wH{;zN^$Sy12Br z{`hd1+7%x$i*AmCL^0z)--REw#Z@PeG0`NL6l8r-D2TuozsrXms`NICwOBW5#a=|? zPaAqrE@k>sg|omjwg@KkT)&am;#T*5TTs!hYdWpQcn?Y19)e{rM~w|P%H=kPP}OiN z$rG9oVr)%Jh8&aUx*4@#7f0PO3Dkqt;jR0htRftwN7IGOlm1duEH62zxxR1K9oa7n zVGso)9C|J{&eu)CA)26Kz&ThBZauVd#Jq14x6-jF5H~^2zv=tKJ?GU+_cX;Kw4sDa zN-hE`w5QXv0?G-)#uHFWwuJz!SH%dvP;`2@0a>MMvo^FxYCnOmjS}of7LU)WHYk@i z-~qXbH5e-cZL$Fv2TnD%81SENbBKkyhIPDsJ^h`Vz!TG4EP#~fWJ*ONnt_jQT!HN{ zqB1f)5?|Tpy6{zmtijoRJ{>M78tjC<3CoJpUVE#AqtX_&eOS&qRy+zXa;TiNhu^65 z9C!JXo&e&y-9U7*KJkL;VUCrS7O?o!E0Eupwk|OgmWlDk5i!6Cu{Pf{5mW)Z2#2f( z`dd3hPXyuFU)5gQGAU2}f<_lKm&)c-U8f$#5PXY6`yGP(1mjX zcZxHi*FiD2#d)!V5C<$PR%XzNS3iPkfWTN^PZy%9GCM5mr`cLQXS0Zkm;>4t9#>M& z+%8f?UtetxY}lT26sd;d>I)A;xM9}S1p4RR9B|B9%Z!D*rHTu6k>&M2oxb zQwogNVNx$?o90aSzW^hIV=A`9(KA}BF>a2LGR;vJqRTZox|8CEf8mdwr|CF1>xwb8 z2HdmjAGG6p!%t-Zi~=)>om5T4QZHDGzYV|QWXWLnx_Y&U;H&&msea{~)7z-^KLTjw ziKA)vgc^q+98NQMCQE{IVXdZQoW$pW|5_QSYY71IJj3+OIfkW7n7Rs@0xo-$DSDJ) zofOA0Ln#TS!QjC8JVZRQ5-M;7L=KtuXw1}~nnls7QNf8h#zP738o?t_bM7RJS3eC0 zdyf5moG|YuGa7F6uuWdH$WM|QoTkNI^!5?*pevk!wVJ~n#Ta`N>A)K~l~SC3Iq=34 zduXV?iX9x`&L@8&>=JUBSkyeCA>e(cm>nr`W@(4I2X~tB5z$sf&+yK2K!n|B#d9+U zfMk$t^EGsuRG#=e%ds{MffIfW99cdM{_4Y9pIkqB|KrQ}16l-CDa4C4mPBW%##v$b z&KTPk>H`RexH{;mM?TqYAGCcrX_$(J@d~0d(-o?uaa6IMJtjurNgKKhrz-pJ z9aB@(;WkvL(?LUk*p>+8F5xYY_xE1Aee?E5hetO)J>0*0`2LMMhx@lbIlOszbfmvA z4Ovba>P=;tE_}r{77{rOZq)#PIEUFBX{$M?=8!)~VcHZ~wOlnH$E(jbBG)<8ka^58 zHeWEZ99JO}g+VpfI2zyrW*Q)NjMKQWvFSQ~x%|L(>Rvw)KwzXi2vhwyp=BTVO;BA* zVw7p#a;vIl^gsZ%wMNYP9+iu#eHhHqAd)!JsK61{Wh>nvM%zrsyomr(CP8d%AH25U zDz)su8kmQ>tZQ77G|&4L(r^#!5Zh`>gMDx~CCT%^Lxs4m9HcwDnwnrMPgv1pDxWyl zI;vCKp;(3t5^eJpVR(jr`SFfzYg-G-9YHpt@30n}0fobEPCbqlf)Hh-j>DYRa_BTh zCXM5gAZ@tr7i4TymRX#{tWQNd!K%E(H3R(B5@tGB)w0b zEn*@qxD#&CN!Z2!!XeBC_srq{73WP^X9lMo9M?|;&jk~hx})K-+-=pj&JkgM;enG( z90tj?%?fBIz*>k0M=(ayT%+{YVO4QPCvZX*Yn%XoI6fgb(3|#N`Do!Q7g*mKj+vJQ z4>OSrBCN2`S-U5oiI-*pc0DW%rIYOjbg?ChFP7f258qWcreLBV&8ehdS(cyp3eU$! zpWHm)Zx!9WevrQ;O0i?t@cv4~Hl2dpTfLpgo>vk;mI@#V8D^g7bQ^ga_@s1 zc@d{58n5GaIkDX2a?g2w5^MF$h7K$e^GFMvbS>@ll4W&cW7+lyaV2OF0@EP-X>byJ zCKrv04$2&!jadNfkc-n5%)E*$yF^&sXugXoRZ=gs-05^5cV)Z;?@}BKoo8(1D7lQ8 zn2dPd$9(DDPN}7Jr^t{ey#{9ZdmU6!Qsy-3ze?S8(c5Gg;b=nvp_<#k>Eoz6*}s9@eidz=kk47haj)^LH0cPSYK6Xv zL>EP?Pfh}^O7Ym69W?1a*U;bx|2Ofp%(=6HC>7_*x3LlREWVJl5)v{rO+lzV<#fS3c<-$1>D->#XWvcp~b)bJ#(E5;y z*=j(A+TvNl7hCAVKm+FeflCxr&_a=iB*Zt7*ubek9J7E8_azfse3JvH^nyyJg3RMH zd|7mAyO2JU`8K2@f;nFWXx?4-fU?9hEMETip8tRvKxx!?`FIZ^u#;Ipw>p*=5u0%kBD6)d>`hmlPNQ7VW5656E$9Sw=O1N_> zX(@&>Bvtl3`4vXz->zsh2;Q!P%lSxV6_tvJYMLN41u08);>qWirA0X)xxDygourUu zdb0~p@Nn3ud~$R+Rg;`kY274B>zpBzDjY*BLPq(BsiW9<|6OSSQTqYRltfj2DG=u3`jk38X zR?OpbF$(XTO^QqvNCBY33SfYz-rCQ{rJYE}A+G{Jq2WUoxpvq2)ek;6xOMx3Lw_hJ zmuCTw?Fa!v#j#a+Gs!B{rz}z5)qQ*MrPF`jqG|W@6 z+T)>k+fFnzr`h09mnR&wHlEi#gWjJkTPtde33GAHbKFT0z2c?~3nSiqMhZU3KXCf8 z%D3w;MC+#HuSHSe+DURtR|ssR6vK1w7DW8F3j%o{M9$*Pg`(&H{4T@v*R(NJne~&f z^5*ULuird8(4E$Ht3lY zkElWVSfLaSVn$|(fvn&kWGwI?!FMvM)nU?1`Eh4e*f!NBfTScI73wW_cgaf-non6O zFq1)_^nx9Y$?#sgHnck;-q5jSPAQ&0Q`4JRR9yz6sAbf4Jcehyk{TXyVbKts3j&ek zyDVCT41xztPA^0X(JWCsbC}3$bsp9uJ8%1Ol4Go_cBXQnRl{{CYg!(%lfmZ{@ItI~ zf;q3nzS;G1@w0_QDWs$bhCW{Tt2aa;!W34Kz&3=Egxro2uv#3x`JyG>g9{Lg@Nyn2 zsG_zCTM=VE{8vukB^i!@GknPA4=$~?&wZRm5)P4I4^|gnx~F$TPs3`ZLz#;K#d0|m zo?iSNt?iekvE=i;i*%3?f4*yG=vTu&GSg_#~zJmKH|p>7XEX1na_oxuAuMXexX< z=}fZu3irU*SI%H*uh6S?Sqp~-@ko!#(GkU$yoli3BnfzJmVhT-l7V)rhjnd+R)o7- z4UpBv7+ZV#$fkP zfsD#l!IGFn3I~2p`8qAMmr>J?$8Kts=lL9gOSU1_XUWivLYGZ_hJ-4V5sx)=p|UMH zJ+;dwW^F^l{18GoG}b=IkDEMZT!Tne-SkuNBn8J1EM5eLnj8<}5a4l$6DE<3)9Lvy zL?C=(Ep}vXjy~AMHPqL#Q(vIq0wlAJ7cJnkv0pxUZGHEtA%;hC94J0tU3l}=xA@e- zA6~io)OJr`lYQWV$DZ~S6%IkVO6JM+Nt!5AMh2Y0@ThscYAIaPK=lOoJ(^$rKNYti zErr=v2!(B64a=FXDQ_^llB7cJP!N1o0W)M{Q}eYc3!Q}}3LWDm0}@*|rO2RpB%GaAZce@zO zWvGFZb#zi(^gs>14fU9bW6)t8N0|imS%QhZZG@XWd7}LMBprA&fg9WXYNw2R(Ufw1;$=jH=!gpTIlGwvChKrUhS-h-KTZ%K zonY(6fWjNd6ucGqC^T!vT?d7N$2Fg^2(Kwg_9~~R^l*qRed1l# zel0{~q@yQ0IT0V!w7Qn14NG)Q5d)INFd%!@PqTbtCqhafz7*!GHspnA@mXJ<0pk$z z9)}@nQ6*UF(gb;RYmd-?6NKkAF4`Eo`^a^L9h?I#R3NRAIise^Gna|6h@Exf%uUu# zP37fQ-4koEqEblSEZj^Lg_=)e_(?#y7~ZJ=M9>tI=C~4#-NY9+8!42y%SRCvCBNfl zu{WajsI< z?+#>xZ(`)oaE}2%z6$juU)Cp^W7an_wT-pr3~q}A06>5!Y*_D^1;E%BcfBBknhd{M zcDZUa!RRU&a9dED7T5eRQMf4)2&!rU|AvOoAGG=^NFPzqFDA&VcNCDuPV;q_&ytJV4bScr8MJ`|d@czx4NFXTR7-FxW zZ=1)Li72!s@5Cxz5Dj7m^ttVn?JZ5O4^? zLYY7#hjT5kwsK#Y)y?B4@YScl~!Oz>fjScHadt9$(#To*KXM!A2UzW{};RXx#k z*@&0e`pyr3fYAKm4vc6EWMh-X(Z%so(<~Q`rj<$81i()6BzwDWX@CZLJr&q!x}#*c zv9zrd-FVCC6N|#H$!qqqs}YneJ$B2DM~QBs*!;((1uL;5P}rOX|Fxg#@oW7$E$8u% zajQa}g-Bp?8qd_|!_FZb5~yft99Xo|%#{Paf^uOZ4g#iXlO%}9z|ea@Gl;Y3<#EE~ zfJ|~nd%sv+==DXnfStV#h(O<)od<==!(c3~p%?SKg`f=1N}D5GLsnO2T~V-1z@*_2 z>B(Ynzyo4|%nmX8eJ%J1G{_!KK0)$`Y_kWV&CFADSPimpnLQCLJwo5(5Ob~x-TNcF z&+y4!#g*8Z;m!Eu5=L?Ec!Z#_%uJ~riG8$yO?QF}DE4e6m8>8iQ4iVbH1fk>$4*g4 z8k#oEz!`8BMk+md*v#?1@U%&Do)m1vIoF-eJOV~-NAJ5= z{X^H&T@fodwYkhAw;McHTHC)^#f=tD2Lg)zKJ&ZKFG|%JewRXwHV$=@Uuc*c3I{;+n|P;DZQDpACQcz%Dw!4jD9;el zh>M1f4edD#2Ige3?lsJ8S7F7jegzAEB4IL_#0jifW4$~)F=xYu_^}W>YX-J#h73A> zIcTyQm*uG8UXDoEvrP@B?O3sXlKAolBD+M=;@bU8yG;A_M=vk`@q2H)_D6gX`(5P= z%Uu*4Qp2GF!MSOqB89dq_|4Z}MZr^buFkJ}Z|n+?pXf@2fH(U&!NMveQ9Mp3jEN7h zavpz*M8!6X!a0pMQA9K9@$xYrSKYgFd)*5R!2$q}Cu2GX7{h>>{8DT}*G8h0{pHv5 zS1kuOyBPpy#hu0M>AYo*f&ae-ywd>F$z5&=2XW^4Vf*~F?2t6+M+9~Ea<21WWO~dF z@`d?r!fp$hUm!>NxLpb<_GKq-MaZ!svIVT7Joz|J-Qsol$w>n9$khUooIM_LiSko| zA~yIsHd=_`)`ht&t@)t+G;&(!^1({wFiPg*GwNM0lx%yKS-}$q9D_7o4yM2zR+898 zZn)8!^*5^!r|WV{IGBqF$Hr8Fr#zFjSb;!an->_$$`&uo$3_)5{$YM-Fc6HY>QRkX zi=hUMDyyY`7U%8JWhwwJU5rg}{r_?O?Z%ayfLdEq_&gyx0|_cclYmc0w-;^`$pkdB zTL$Wec<63hS%yCoYuxf#BM1F1<&H|QG#s@ri!dY6ku>>}JFNz{npRd+2abxJLzT;f zKIg^0tf;)$VGR-~2^7$#Uku)-PZ84^>-4 zUixan!lzd$r3Cnw?i;A?gQzjvrm>IsJKZRY8kwT7uYZ^pa18mplg;hYttjeekL4oP z**@6phUFZu2((@)UI{XkZ}XSk(KTBLM*->u`L3bU#U75gQ%RUMz#?eVJ)a=P+}~|> z(Z=xJO>v`d;I#n$i!y0}jNhPkvxwZ!n+N#rS_J(3NuV(%6Am>K$1z}%vLQ(Ihm3w$ ztV$9_oeYAA3nZ|vbiNMGJZkyHKD4w!N0bwlF%QTbyt<^;LKlv>r2d}n@ACTWB}t4l zt95%0Pc`;Li?jaXibf+W1TW1`Py#0yaq6g2BQMN());&mrikSTrvS7Iy3!In<^^u} zZ71FC#Np%OD%c?KaUvwstVS+kI94!JDlf4LJ$ZG5ADic|nA=|2yYL?_po=^tDLnUK z_7KR#6<5)d8VDF6u=i>kQFkL&;UUkQ*A7W+l}H@IaQq*Rmq-m0*iKio*uTje=+k>z zlTW7d;!n9f_!G=;8o?=1M;L1G2z>!v^g`@1SLiNnzdJc{TSx%F-u2TxP<7~l92A=#_d}-Zhf@({>|(6_`6xsv2}Z-R?7_(61~z98A5c4 zCgu%CqcO79WfXvm@kByPH65I(9E8^bL5*#PowS@rW(tJzdoMQCED~}!1P=f;?$RhEvK(Nwr7=i#nsH zB?HzN&?qSu>az&ce+Vc|u}i#j7&tmB6{3y(S$)HQv)t*Ey7iABh9`xT5IAwk!6oN^ zVb)#7eYs{o=S5<5A%I|w^AmB(KfNCcL=6%l%As8pP>3|X0^(d^P}%oWq=`ig{+5qN z_=QsmvuaZRgTneitd6jYLWX-7VE{DZZ~{i#cB)$1>H5~n3s$)yXrHE-t(R;xPk#si z!LGCo?=+C}Fo*stbz&1)+Hl8l1{I8SwM{a!Wx-A&N;`qRrJ+3;LYrUkK^;1NrN|6p zeHJ_n!-kx_2wYWqL0T|G3Slg#8(zABgzm{G(L{wK-Q{g!&+-w#%1u#2S1op)*m$an zqR>e$DnX2dui?ARUdyaN6q`7@&GJjDKwx(jTGK2)JPd%KvI8~HEXX!1lMZnNKu9fn z?xb<6axlNRw8MC8pZP|9E4Zs5@hq~MYnGSChkD*TJi31Q#;p&(^ZxByN7rxM+W+j6 zo9sBBkXRpON%*HV>r%GywOrUF3Y@SBm;q_z_Gb51^62o^(f;i_A1>Ik9hNoBlBhjg z;~YBs&|1x*GFPP+RqQK@MkZ7?Zp_~TQ6E98M!xRFX73}oZ(aX%|1>hhx%mg!@)KgXPL$pGTf7px^Kt6v_WS#{-v4af@*O_^A3p4^ga7~l delta 135 zcmbQdiKCr0>YfnGR0bem24Wc?HUV*vfDe$(0mQyQ%mTz=Kzx~zfgu`5y8y9169a<~ zkS+nz45}##Y5ApjDGYh36(y7XR)q5!>l#?-8k#E@npl}yY~HjYhmpld&yZ`f=Mj(T K&s!M<7#RSu3>QZL diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index bcb65e25b5b..a56273d3122 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,1222 +8,1264 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Tamil (http://app.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "மூல கோப்பகத்தை (%கள்) கண்டுபிடிக்க முடியவில்லை" #: sphinx/application.py:161 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "வெளியீட்டு அடைவு (%கள்) ஒரு அடைவு அல்ல" #: sphinx/application.py:165 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "மூல அடைவு மற்றும் இலக்கு அடைவு ஒரே மாதிரியாக இருக்க முடியாது" #: sphinx/application.py:197 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "இயங்கும் Sphinx v%s" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "இந்த திட்டத்திற்கு குறைந்தபட்சம் ஸ்பின்க்ஸ் வி%கள் தேவை, எனவே இந்த பதிப்பில் உருவாக்க முடியாது." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" -msgstr "" +msgstr "வெளியீட்டு கோப்பகத்தை உருவாக்குதல்" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" -msgstr "" +msgstr "நீட்டிப்பு %s ஐ அமைக்கும் போது:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." -msgstr "" +msgstr "தற்போது conf.py இல் வரையறுக்கப்பட்டுள்ளபடி 'அமைவு' ஒரு பைதான் அழைக்கக்கூடியது அல்ல. அதை அழைக்கக்கூடிய செயல்பாடாக மாற்ற அதன் வரையறையை மாற்றவும். Conf.py ஒரு ஸ்பிங்க்ஸ் நீட்டிப்பாக நடந்து கொள்ள இது தேவை." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "மொழிபெயர்ப்புகளை ஏற்றுகிறது [%கள்] ..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" -msgstr "" +msgstr "முடிந்தது" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" -msgstr "" +msgstr "உள்ளமைக்கப்பட்ட செய்திகளுக்கு கிடைக்கவில்லை" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" -msgstr "" +msgstr "ஊறுகாய் சூழலை ஏற்றுகிறது" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" -msgstr "" +msgstr "தோல்வியுற்றது: %கள்" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" -msgstr "" +msgstr "இயல்புநிலையைப் பயன்படுத்தி பில்டர் தேர்ந்தெடுக்கப்படவில்லை: HTML" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" -msgstr "" +msgstr "வெற்றி பெற்றார்" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" -msgstr "" +msgstr "சிக்கல்களுடன் முடிந்தது" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." -msgstr "" +msgstr "%s, %s எச்சரிக்கையை உருவாக்குங்கள் (எச்சரிக்கைகள் பிழைகளாகக் கருதப்படுகின்றன)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." -msgstr "" +msgstr "%s, %s எச்சரிக்கைகளை உருவாக்குங்கள் (எச்சரிக்கைகள் பிழைகளாகக் கருதப்படுகின்றன)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "%கள், %கள் எச்சரிக்கையை உருவாக்குங்கள்." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." -msgstr "" +msgstr "%s, %s எச்சரிக்கைகளை உருவாக்குங்கள்." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." -msgstr "" +msgstr "%s ஐ உருவாக்குங்கள்." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" -msgstr "" +msgstr "முனை வகுப்பு %ஆர் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, அதன் பார்வையாளர்கள் மீறப்படுவார்கள்" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" -msgstr "" +msgstr "டைரக்டிவ் %ஆர் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, அது மீறப்படும்" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" -msgstr "" +msgstr "பங்கு %ஆர் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது, அது மீறப்படும்" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "இணையான வாசிப்புக்கு இது பாதுகாப்பாக இருந்தால் %கள் நீட்டிப்பு அறிவிக்கவில்லை, அது இல்லை என்று கருதி - தயவுசெய்து நீட்டிப்பு ஆசிரியரிடம் சரிபார்த்து அதை வெளிப்படையாகச் சொல்லுங்கள்" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" -msgstr "" +msgstr "இணையான வாசிப்புக்கு %கள் நீட்டிப்பு பாதுகாப்பானது அல்ல" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "இணையான எழுத்துக்கு பாதுகாப்பானதா என்று %கள் நீட்டிப்பு அறிவிக்கவில்லை, அது இல்லை என்று கருதி - தயவுசெய்து நீட்டிப்பு ஆசிரியரிடம் சரிபார்த்து அதை வெளிப்படையாகச் சொல்லுங்கள்" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" -msgstr "" +msgstr "இணையான எழுத்துக்கு %கள் நீட்டிப்பு பாதுகாப்பானது அல்ல" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "சீரியல் %கள் செய்வது" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "கட்டமைப்பு கோப்பகத்தில் ஒரு conf.py கோப்பு (%கள்) இல்லை" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." -msgstr "" +msgstr "தவறான உள்ளமைவு மதிப்பு காணப்படுகிறது: 'மொழி = எதுவுமில்லை'. உங்கள் உள்ளமைவை செல்லுபடியாகும் மொழிக் குறியீட்டிற்கு புதுப்பிக்கவும். 'EN' (ஆங்கிலம்) க்கு மீண்டும் விழுகிறது." -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" -msgstr "" +msgstr "புறக்கணித்தல் (தனிப்பட்ட கூறுகளை அமைக்க %R ஐப் பயன்படுத்தவும்) அகராதி கட்டமைப்பு அமைப்பை மேலெழுத முடியாது)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "" +msgstr "கட்டமைப்பு மதிப்புக்கு தவறான எண் %r, புறக்கணித்தல்" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "" +msgstr "புறக்கணிப்பு, ஆதரிக்கப்படாத வகையுடன் %r ஐ கட்டமைக்கும் கட்டமைப்பு அமைப்பை மீற முடியாது" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "" +msgstr "அறியப்படாத கட்டமைப்பு மதிப்பு %r மேலெழுதலில், புறக்கணிக்கிறது" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" +msgstr "கட்டமைப்பு மதிப்பு %r ஏற்கனவே உள்ளது" + +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" -msgstr "" +msgstr "உங்கள் உள்ளமைவு கோப்பில் ஒரு தொடரியல் பிழை உள்ளது: %கள்" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "Sys.exit () எனப்படும் உள்ளமைவு கோப்பு (அல்லது அது இறக்குமதி செய்யும் தொகுதிகளில் ஒன்று)" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" +msgstr "உங்கள் உள்ளமைவு கோப்பில் நிரல்படுத்தக்கூடிய பிழை உள்ளது: \n\n %கள்" + +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "" +msgstr "கட்டமைப்பு மதிப்பு `source_suffix 'ஒரு சரம், சரங்களின் பட்டியல் அல்லது அகராதியை எதிர்பார்க்கிறது. ஆனால் `%r 'வழங்கப்படுகிறது." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" -msgstr "" +msgstr "பிரிவு %கள்" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" -msgstr "" +msgstr "படம். %கள்" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" -msgstr "" +msgstr "அட்டவணை %கள்" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" -msgstr "" +msgstr "பட்டியல் %கள்" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" +msgstr "கட்டமைப்பு மதிப்பு `{பெயர்}` {வேட்பாளர்களில் ஒருவராக இருக்க வேண்டும், ஆனால் `{நடப்பு}` வழங்கப்படுகிறது." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." -msgstr "" +msgstr "கட்டமைப்பு மதிப்பு `{பெயர்} 'வகை` {நடப்பு .__ பெயர்__}'; எதிர்பார்க்கப்படுகிறது {அனுமதிக்கப்பட்டது}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." -msgstr "" +msgstr "கட்டமைப்பு மதிப்பு `{பெயர்} 'வகை` {நடப்பு .__ பெயர்__}', இயல்புநிலை `{இயல்புநிலை .__ பெயர்__} '." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." -msgstr "" +msgstr "முதன்மை_ டொமைன் %r கண்டுபிடிக்கப்படவில்லை, புறக்கணிக்கப்படுகிறது." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "" +msgstr "V2.0 என்பதால், SPHINX இயல்புநிலையாக \"குறியீட்டை\" ரூட்_டாக் பயன்படுத்துகிறது. உங்கள் conf.py இல் \"root_doc = 'பொருளடக்கம்'\" ஐச் சேர்க்கவும்." -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" -msgstr "" +msgstr "நிகழ்வு %r ஏற்கனவே உள்ளது" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" -msgstr "" +msgstr "தெரியாத நிகழ்வு பெயர்: %கள்" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "நிகழ்வு %r க்கு ஹேண்ட்லர் %r ஒரு விதிவிலக்கை வீசினார்" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "%S நீட்டிப்பு தேவைகள்_எக்ஸ்டென்சன்ஸ் அமைப்புகளால் தேவைப்படுகிறது, ஆனால் அது ஏற்றப்படவில்லை." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." -msgstr "" +msgstr "இந்த திட்டத்திற்கு குறைந்தபட்சம் %கள் பதிப்பு %s இல் நீட்டிப்பு தேவைப்படுகிறது, எனவே ஏற்றப்பட்ட பதிப்பு ( %கள்) உடன் உருவாக்க முடியாது." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "" +msgstr "பைக்மென்ட் லெக்ஸர் பெயர் %ஆர் அறியப்படவில்லை" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "" +msgstr "\" %S\" என லெக்சிங் literal_block %r டோக்கனில் பிழை ஏற்பட்டது: %r. தளர்வான பயன்முறையில் மீண்டும் முயற்சிப்பது." -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "\" %s\" ஆவணத்திற்கு பல கோப்புகள் காணப்படுகின்றன: %r \n உருவாக்க %R ஐப் பயன்படுத்தவும்." -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." -msgstr "" +msgstr "படிக்க முடியாத ஆவணம் %r ஐ புறக்கணித்தது." -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "" +msgstr "பில்டர் வகுப்பு %எஸ் \"பெயர்\" பண்புக்கூறு இல்லை" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" -msgstr "" +msgstr "பில்டர் %ஆர் ஏற்கனவே உள்ளது (தொகுதி %கள்)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "" +msgstr "பில்டர் பெயர் %எஸ் பதிவு செய்யப்படவில்லை அல்லது நுழைவு புள்ளி மூலம் கிடைக்கவில்லை" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" -msgstr "" +msgstr "பில்டர் பெயர் %கள் பதிவு செய்யப்படவில்லை" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" -msgstr "" +msgstr "டொமைன் %கள் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளன" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" -msgstr "" +msgstr "டொமைன் %எஸ் இன்னும் பதிவு செய்யப்படவில்லை" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" -msgstr "" +msgstr "%R உத்தரவு ஏற்கனவே டொமைன் %s இல் பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" -msgstr "" +msgstr "%R பங்கு ஏற்கனவே டொமைன் %s க்கு பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" -msgstr "" +msgstr "%R குறியீடு ஏற்கனவே டொமைன் %s இல் பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "%R object_type ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "%ஆர் கிராஸ்ரெஃப்_ டைப் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "source_suffix %r ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" -msgstr "" +msgstr "%R க்கான source_parser ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "%கள் பதிவு செய்யப்படவில்லை என்பதற்கான மூல பாகுபடுத்தி" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" -msgstr "" +msgstr "%R க்கான மொழிபெயர்ப்பாளர் ஏற்கனவே இருக்கிறார்" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "" +msgstr "Add_node () க்கான குவார்க்ஸ் ஒரு (வருகை, புறப்பட வேண்டும்) செயல்பாடு டூப்பிள்: %r = %r ஆக இருக்க வேண்டும்" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "கணக்கிடக்கூடிய முனை %ஏற்கனவே பதிவு செய்யப்பட்டுள்ளது" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" -msgstr "" +msgstr "கணித ரெண்டரர் %கள் ஏற்கனவே பதிவு செய்யப்பட்டுள்ளன" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "" +msgstr "பதிப்பு %கள் முதல் %R நீட்டிப்பு ஏற்கனவே SPHINX உடன் இணைக்கப்பட்டுள்ளது; இந்த நீட்டிப்பு புறக்கணிக்கப்படுகிறது." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" -msgstr "" +msgstr "அசல் விதிவிலக்கு:" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" -msgstr "" +msgstr "நீட்டிப்பு %s ஐ இறக்குமதி செய்ய முடியவில்லை" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" -msgstr "" +msgstr "நீட்டிப்பு %r எந்த அமைப்பும் () செயல்பாட்டைக் கொண்டிருக்கவில்லை; இது உண்மையில் ஒரு ஸ்பிங்க்ஸ் நீட்டிப்பு தொகுதியா?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." -msgstr "" +msgstr "இந்த திட்டத்தால் பயன்படுத்தப்படும் %கள் நீட்டிப்புக்கு குறைந்தபட்சம் ஸ்பின்க்ஸ் v %கள் தேவை; எனவே இந்த பதிப்பில் இதை உருவாக்க முடியாது." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" -msgstr "" +msgstr "நீட்டிப்பு %r அதன் அமைவு () செயல்பாட்டிலிருந்து ஆதரிக்கப்படாத பொருளைத் திருப்பியது; இது எதுவும் அல்லது மெட்டாடேட்டா அகராதியைத் திருப்பித் தரக்கூடாது" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "" +msgstr "பைதான் மேம்பாட்டு திட்டங்கள்; Pep %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "தவறான PEP எண் %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" +msgstr "தவறான RFC எண் %s" + +#: sphinx/theming.py:125 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "தேடப்பட்ட தீம் கட்டமைப்புகள் எதுவும் இல்லை. %s. %s ஏற்படாது" + +#: sphinx/theming.py:140 +#, python-format +msgid "unsupported theme option %r given" +msgstr "ஆதரிக்கப்படாத தீம் விருப்பம் %r கொடுக்கப்பட்டுள்ளது" + +#: sphinx/theming.py:206 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "தீம் பாதையில் கோப்பு %r என்பது செல்லுபடியாகும் ஜிப்ஃபைல் அல்ல அல்லது எந்த கருப்பொருளும் இல்லை" + +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:259 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:262 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:295 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme configuration file found in %r" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:323 sphinx/theming.py:374 #, python-format -msgid "unsupported theme option %r given" +msgid "theme %r doesn't have the \"theme\" table" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:327 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:335 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "" +msgstr "%கள் பில்டருக்கு பொருத்தமான படம் காணப்படவில்லை: %கள் ( %கள்)" #: sphinx/builders/__init__.py:187 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "" +msgstr "%கள் பில்டருக்கு பொருத்தமான படம் காணப்படவில்லை: %கள்" #: sphinx/builders/__init__.py:207 msgid "building [mo]: " -msgstr "" +msgstr "கட்டிடம் [மோ]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " -msgstr "" +msgstr "எழுதுதல் வெளியீடு ..." #: sphinx/builders/__init__.py:217 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "%டி போ கோப்புகள் அனைத்தும்" #: sphinx/builders/__init__.py:235 #, python-format msgid "targets for %d po files that are specified" -msgstr "" +msgstr "குறிப்பிடப்பட்ட %d po கோப்புகளுக்கான இலக்குகள்" #: sphinx/builders/__init__.py:243 #, python-format msgid "targets for %d po files that are out of date" -msgstr "" +msgstr "காலாவதியான %d po கோப்புகளுக்கான இலக்குகள்" #: sphinx/builders/__init__.py:252 msgid "all source files" -msgstr "" +msgstr "அனைத்து மூல கோப்புகளும்" #: sphinx/builders/__init__.py:262 #, python-format msgid "file %r given on command line does not exist, " -msgstr "" +msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட கோப்பு %r இல்லை," #: sphinx/builders/__init__.py:267 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட கோப்பு %r மூல கோப்பகத்தின் கீழ் இல்லை, புறக்கணிக்கிறது" #: sphinx/builders/__init__.py:273 #, python-format msgid "file %r given on command line is not a valid document, ignoring" -msgstr "" +msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட கோப்பு %r என்பது சரியான ஆவணம் அல்ல, புறக்கணிக்கிறது" #: sphinx/builders/__init__.py:282 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "கட்டளை வரியில் கொடுக்கப்பட்ட %d மூல கோப்புகள்" #: sphinx/builders/__init__.py:294 #, python-format msgid "targets for %d source files that are out of date" -msgstr "" +msgstr "காலாவதியான %d மூல கோப்புகளுக்கான இலக்குகள்" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "கட்டிடங்கள்]:" #: sphinx/builders/__init__.py:316 msgid "looking for now-outdated files... " -msgstr "" +msgstr "இப்போது வெளியேற்றப்படாத கோப்புகளைத் தேடுகிறது ..." -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d கண்டு ப்பிடித்த விட்டது" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" -msgstr "" +msgstr "எதுவும் கிடைக்கவில்லை" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" -msgstr "" +msgstr "ஊறுகாய் சூழல்" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" -msgstr "" +msgstr "நிலைத்தன்மையை சரிபார்க்கிறது" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." -msgstr "" +msgstr "இலக்குகள் எதுவும் காலாவதியானவை அல்ல." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " -msgstr "" +msgstr "சூழலைப் புதுப்பித்தல்:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" -msgstr "" +msgstr "%கள் சேர்க்கப்பட்டன, %கள் மாற்றப்பட்டன, %கள் அகற்றப்பட்டன" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " -msgstr "" +msgstr "வாசிப்பு ஆதாரங்கள் ..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" -msgstr "" +msgstr "எழுத டாக் பெயர்கள்: %கள்" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" -msgstr "" +msgstr "ஆவணங்களைத் தயாரித்தல்" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" -msgstr "" +msgstr "சொத்துக்களை நகலெடுக்கும்" #: sphinx/builders/_epub_base.py:215 #, python-format msgid "duplicated ToC entry found: %s" -msgstr "" +msgstr "நகல் TOC நுழைவு காணப்பட்டது: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " -msgstr "" +msgstr "படங்களை நகலெடுக்கும் ..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "படக் கோப்பு %ஆர்: அதற்கு பதிலாக நகலெடுக்க முடியாது" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "படக் கோப்பு %r: %s ஐ நகலெடுக்க முடியாது" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" -msgstr "" +msgstr "படக் கோப்பு %r: %s ஐ எழுத முடியாது" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" -msgstr "" +msgstr "தலையணை கிடைக்கவில்லை - படக் கோப்புகளை நகலெடுக்கும்" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." -msgstr "" +msgstr "Mimetype கோப்பை எழுதுதல் ..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." -msgstr "" +msgstr "Meta-inf/contain.xml கோப்பை எழுதுதல் ..." #: sphinx/builders/_epub_base.py:508 msgid "writing content.opf file..." -msgstr "" +msgstr "content.opf கோப்பு எழுதுதல் ..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "புறக்கணிப்பு %s க்கான அறியப்படாத Mimetype" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." -msgstr "" +msgstr "toc.ncx கோப்பை எழுதுதல் ..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "%s கோப்பை எழுதுதல் ..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "கண்ணோட்டம் கோப்பு %(வெளிப்புற) களில் உள்ளது." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." -msgstr "" +msgstr "பதிப்பு %s இல் மாற்றங்கள் இல்லை." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." -msgstr "" +msgstr "சுருக்கம் கோப்பை எழுதுதல் ..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" -msgstr "" +msgstr "பில்டின்ஸ்" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" -msgstr "" +msgstr "தொகுதி நிலை" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." -msgstr "" +msgstr "மூல கோப்புகளை நகலெடுக்கும் ..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" -msgstr "" +msgstr "சேஞ்ச்லாக் உருவாக்கத்திற்கு %R ஐப் படிக்க முடியவில்லை" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." -msgstr "" +msgstr "போலி பில்டர் எந்த கோப்புகளையும் உருவாக்கவில்லை." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "எபப் கோப்பு %(வெளிப்புற) களில் உள்ளது." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "Nav.xhtml கோப்பு எழுதுதல் ..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "" +msgstr "conf மதிப்பு \"epub_language\" (அல்லது \"மொழி\") EPUB3 க்கு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "conf மதிப்பு \"EPUB_UID\" EPUB3 க்கான XML பெயராக இருக்க வேண்டும்" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "conf மதிப்பு \"epub_title\" (அல்லது \"HTML_TITLE\") EPUB3 க்கு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3 க்கு \"EPUB_AUTHOR\" கான் மதிப்பு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3 க்கு \"epub_contributor\" கான்ஸ் மதிப்பு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3 க்கு \"EPUB_DESCRIPTION\" CONF மதிப்பு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3 க்கு \"EPUB_PUBLISHER\" கான்ஸ் மதிப்பு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "conf மதிப்பு \"epub_copyright\" (அல்லது \"பதிப்புரிமை\") EPUB3 க்கு காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3 க்கு \"EPUB_IDENTIFIER\" காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3 க்கு \"பதிப்பு\" காலியாக இருக்கக்கூடாது" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "தவறான CSS_FILE: %r, புறக்கணிக்கப்பட்டது" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "செய்தி பட்டியல்கள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "%டி வார்ப்புரு கோப்புகளுக்கான இலக்குகள்" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " -msgstr "" +msgstr "வார்ப்புருக்கள் படித்தல் ..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " -msgstr "" +msgstr "செய்தி பட்டியல்களை எழுதுதல் ..." -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "மேலே உள்ள வெளியீட்டில் அல்லது %(வெளிப்புற) s/output.txt இல் ஏதேனும் பிழைகள் தேடுங்கள்" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "உடைந்த இணைப்பு: %கள் ( %கள்)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "Regex ஐ லிங்க்செக்_அலோவ்_ரெடிரெக்ட்ஸில் தொகுக்கத் தவறிவிட்டது: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "கையேடு பக்கங்கள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" -msgstr "" +msgstr "\"MAN_PAGES\" கட்டமைப்பு மதிப்பு இல்லை; கையேடு பக்கங்கள் எதுவும் எழுதப்படாது" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" -msgstr "" +msgstr "எழுதுதல்" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" -msgstr "" +msgstr "\"man_pages\" கட்டமைப்பு மதிப்பு குறிப்புகள் அறியப்படாத ஆவணம் %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." -msgstr "" +msgstr "HTML பக்கம் %(வெளிப்புற) களில் உள்ளது." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" -msgstr "" +msgstr "ஒற்றை ஆவணத்தை ஒன்று சேர்ப்பது" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" -msgstr "" +msgstr "கூடுதல் கோப்புகளை எழுதுதல்" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "டெக்ஸின்ஃபோ கோப்புகள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "" +msgstr "மேக்இன்ஃபோ மூலம் இயக்க அந்த கோப்பகத்தில் 'மேக்' இயக்கவும் \n (தானாகவே அதைச் செய்ய இங்கே 'தகவல்களை உருவாக்கு' பயன்படுத்தவும்)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "இல்லை \"டெக்ஸின்ஃபோ_டோகென்ட்ஸ்\" கட்டமைப்பு மதிப்பு காணப்படவில்லை; எந்த ஆவணங்களும் எழுதப்படாது" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "\"Dexinfo_Documents\" கட்டமைப்பு மதிப்பு குறிப்புகள் அறியப்படாத ஆவணம் %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" -msgstr "" +msgstr "செயலாக்கம் %கள்" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." -msgstr "" +msgstr "குறிப்புகளைத் தீர்ப்பது ..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " -msgstr "" +msgstr "(இல்" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" -msgstr "" +msgstr "டெக்ஸின்ஃபோ ஆதரவு கோப்புகளை நகலெடுக்கிறது" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" -msgstr "" +msgstr "பிழை எழுதும் கோப்பு மேக்ஃபைல்: %கள்" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "உரை கோப்புகள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "பிழை எழுதும் கோப்பு %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "எக்ஸ்எம்எல் கோப்புகள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "போலி-எக்ஸ்எம்எல் கோப்புகள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "உருவாக்கு தகவல் கோப்பு உடைந்தது: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "HTML பக்கங்கள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "உருவாக்க தகவல் கோப்பைப் படிக்கத் தவறிவிட்டது: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" -msgstr "" +msgstr "%b %d, %y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" -msgstr "" +msgstr "பொது அட்டவணை" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" -msgstr "" +msgstr "குறியீட்டு" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "அடுத்த" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" -msgstr "" +msgstr "முந்தைய" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" -msgstr "" +msgstr "குறியீடுகளை உருவாக்குதல்" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" -msgstr "" +msgstr "கூடுதல் பக்கங்களை எழுதுதல்" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " -msgstr "" +msgstr "தரவிறக்கம் செய்யக்கூடிய கோப்புகளை நகலெடுக்கிறது ..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" -msgstr "" +msgstr "தரவிறக்கம் செய்யக்கூடிய கோப்பு %r: %s ஐ நகலெடுக்க முடியாது" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "" +msgstr "HTML_STATIC_FILE இல் ஒரு கோப்பை நகலெடுப்பதில் தோல்வி: %s: %r" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" -msgstr "" +msgstr "நிலையான கோப்புகளை நகலெடுக்கும்" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "நிலையான கோப்பு %r ஐ நகலெடுக்க முடியாது" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" -msgstr "" +msgstr "கூடுதல் கோப்புகளை நகலெடுக்கிறது" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "கூடுதல் கோப்பு %r ஐ நகலெடுக்க முடியாது" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" -msgstr "" +msgstr "உருவாக்க தகவல் கோப்பை எழுதுவதில் தோல்வி: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "" +msgstr "தேடல் குறியீட்டை ஏற்ற முடியாது, ஆனால் எல்லா ஆவணங்களும் கட்டப்படாது: குறியீடு முழுமையடையாது." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "" +msgstr "பக்கம் %S HTML_SIDEBARS இல் இரண்டு வடிவங்களுடன் பொருந்துகிறது: %R மற்றும் %R" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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 "" +msgstr "பக்கத்தை %s ஐ வழங்கும்போது யூனிகோட் பிழை ஏற்பட்டது. அசி அல்லாத உள்ளடக்கத்தைக் கொண்ட அனைத்து கட்டமைப்பு மதிப்புகளும் யூனிகோட் சரங்கள் என்பதை உறுதிப்படுத்தவும்." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "பக்கம் %s ஐ வழங்குவதில் பிழை ஏற்பட்டது. \n காரணம்: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" -msgstr "" +msgstr "பொருள் சரக்குகளை கொட்டுகிறது" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" -msgstr "" +msgstr "தேடல் குறியீட்டை %s இல் கொட்டுதல்" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "தவறான JS_FILE: %r, புறக்கணிக்கப்பட்டது" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "பல கணிதங்கள் பதிவு செய்யப்பட்டுள்ளன. ஆனால் எந்த கணிதமும் தேர்ந்தெடுக்கப்படவில்லை." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "அறியப்படாத கணித_ரெண்டர் %ஆர் வழங்கப்படுகிறது." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" -msgstr "" +msgstr "html_extra_path நுழைவு %r இல்லை" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" -msgstr "" +msgstr "HTML_EXTRA_PATH நுழைவு %R க்குள் வைக்கப்படுகிறது" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" -msgstr "" +msgstr "HTML_STATIC_PATH நுழைவு %R இல்லை" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" -msgstr "" +msgstr "HTML_STATIC_PATH நுழைவு %R க்குள் வைக்கப்படுகிறது" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "லோகோ கோப்பு %r இல்லை" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "ஃபாவிகான் கோப்பு %ஆர் இல்லை" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" -msgstr "" +msgstr "HTML 4 இனி ஸ்பிங்க்ஸால் ஆதரிக்கப்படாது. (\"HTML4_WRITER = TRUE\" உள்ளமைவு விருப்பங்களில் கண்டறியப்பட்டது)" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" -msgstr "" +msgstr "%s %ஆவணங்கள்" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "லேடெக்ஸ் கோப்புகள் %(வெளிப்புற) களில் உள்ளன." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "(PDF) லேடெக்ஸ் மூலம் இயக்க அந்த கோப்பகத்தில் 'உருவாக்கு' இயக்கவும் \n (தானாகவே அதைச் செய்ய இங்கே `Latexpdf 'ஐப் பயன்படுத்தவும்)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "இல்லை \"லேடெக்ஸ்_டோகென்ட்ஸ்\" கட்டமைப்பு மதிப்பு காணப்படவில்லை; எந்த ஆவணங்களும் எழுதப்படாது" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "" +msgstr "\"Latex_Documents\" கட்டமைப்பு மதிப்பு குறிப்புகள் அறியப்படாத ஆவணம் %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" -msgstr "" +msgstr "குறியீட்டு" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" -msgstr "" +msgstr "வெளியீடு" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" -msgstr "" +msgstr "மொழிக்கு அறியப்படாத பாபல் விருப்பம் %r" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" -msgstr "" +msgstr "டெக்ஸ் ஆதரவு கோப்புகளை நகலெடுக்கிறது" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." -msgstr "" +msgstr "டெக்ஸ் ஆதரவு கோப்புகளை நகலெடுக்கிறது ..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" -msgstr "" +msgstr "கூடுதல் கோப்புகளை நகலெடுக்கிறது" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." -msgstr "" +msgstr "அறியப்படாத கட்டமைப்பு விசை: லேடெக்ஸ்_அலெமென்ட்ஸ் [%ஆர்], புறக்கணிக்கப்பட்டது." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "" +msgstr "அறியப்படாத தீம் விருப்பம்: லேடெக்ஸ்_தெம்_ஓப்ஷன்கள் [%ஆர்], புறக்கணிக்கப்பட்டது." #: sphinx/builders/latex/theming.py:87 #, python-format msgid "%r doesn't have \"theme\" setting" -msgstr "" +msgstr "%R இல் \"தீம்\" அமைப்பு இல்லை" #: sphinx/builders/latex/theming.py:90 #, python-format msgid "%r doesn't have \"%s\" setting" -msgstr "" +msgstr "%R க்கு \"%s\" அமைப்பு இல்லை" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" -msgstr "" +msgstr "ஒரு ஆவணம் பெறத் தவறிவிட்டது!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" -msgstr "" +msgstr "மூல {மூல! R} க்கான ஆவணப் பெயர் பெறுவதில் தோல்வி!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" -msgstr "" +msgstr "கொடுக்கப்பட்ட குறிப்பு முனை %r க்கு எந்த அடிக்குறிப்பும் கிடைக்கவில்லை" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "பிழைத்திருத்தத்தைத் தொடங்கும் போது விதிவிலக்கு ஏற்பட்டது:" #: sphinx/cmd/build.py:61 msgid "Interrupted!" -msgstr "" +msgstr "குறுக்கிட்டது!" #: sphinx/cmd/build.py:63 msgid "reST markup error:" -msgstr "" +msgstr "ஓய்வு மார்க்அப் பிழை:" #: sphinx/cmd/build.py:69 msgid "Encoding error:" -msgstr "" +msgstr "குறியீட்டு பிழை:" #: sphinx/cmd/build.py:72 sphinx/cmd/build.py:87 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." -msgstr "" +msgstr "டெவலப்பர்களிடம் சிக்கலை நீங்கள் புகாரளிக்க விரும்பினால், முழு சுவடு % %களில் சேமிக்கப்பட்டுள்ளது." #: sphinx/cmd/build.py:76 msgid "Recursion error:" -msgstr "" +msgstr "மறுநிகழ்வு பிழை:" #: sphinx/cmd/build.py:79 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "இது மிகப் பெரிய அல்லது ஆழமான உள்ளமைக்கப்பட்ட மூல கோப்புகளுடன் நிகழலாம். எ.கா. உடன் conf.py இல் இயல்புநிலை பைதான் மறுநிகழ்வு வரம்பை நீங்கள் கவனமாக அதிகரிக்கலாம்." #: sphinx/cmd/build.py:84 msgid "Exception occurred:" -msgstr "" +msgstr "விதிவிலக்கு ஏற்பட்டது:" #: sphinx/cmd/build.py:90 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." -msgstr "" +msgstr "இது ஒரு பயனர் பிழையாக இருந்தால் இதைப் புகாரளிக்கவும், இதனால் அடுத்த முறை சிறந்த பிழை செய்தியை வழங்க முடியும்." #: sphinx/cmd/build.py:93 msgid "" "A bug report can be filed in the tracker at . Thanks!" -msgstr "" +msgstr "ஒரு பிழை அறிக்கையை டிராக்கரில் இல் தாக்கல் செய்யலாம். நன்றி!" #: sphinx/cmd/build.py:109 msgid "job number should be a positive number" -msgstr "" +msgstr "வேலை எண் நேர்மறை எண்ணாக இருக்க வேண்டும்" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." -msgstr "" +msgstr "மேலும் தகவலுக்கு, ஐப் பார்வையிடவும்." #: sphinx/cmd/build.py:118 msgid "" @@ -1242,285 +1284,292 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "மூல கோப்புகளிலிருந்து ஆவணங்களை உருவாக்குங்கள். \n\n Sphinx- கட்டளை sourcedir இல் உள்ள கோப்புகளிலிருந்து ஆவணங்களை உருவாக்கி வைக்கிறது \n OutputDir இல். இது உள்ளமைவுக்காக ஆதாரத்தில் 'conf.py' ஐத் தேடுகிறது \n அமைப்புகள். வார்ப்புரு கோப்புகளை உருவாக்க 'ஸ்பின்க்ஸ்-க்யூக்ஸ்டார்ட்' கருவி பயன்படுத்தப்படலாம், \n 'conf.py' உட்பட \n\n ஸ்பிங்க்ஸ்-பில்ட் வெவ்வேறு வடிவங்களில் ஆவணங்களை உருவாக்க முடியும். ஒரு வடிவம் \n கட்டளை வரியில் பில்டர் பெயரைக் குறிப்பிடுவதன் மூலம் தேர்ந்தெடுக்கப்பட்டது; இது இயல்புநிலையாகும் \n HTML. ஆவணங்கள் தொடர்பான பிற பணிகளையும் பில்டர்கள் செய்யலாம் \n செயலாக்கம். \n\n இயல்பாக, காலாவதியான அனைத்தும் கட்டமைக்கப்பட்டுள்ளன. தேர்ந்தெடுக்கப்பட்ட வெளியீடு மட்டுமே \n தனிப்பட்ட கோப்பு பெயர்களைக் குறிப்பிடுவதன் மூலம் கோப்புகளை உருவாக்க முடியும்." #: sphinx/cmd/build.py:139 msgid "path to documentation source files" -msgstr "" +msgstr "ஆவண மூல கோப்புகளுக்கான பாதை" #: sphinx/cmd/build.py:141 msgid "path to output directory" -msgstr "" +msgstr "வெளியீட்டு கோப்பகத்திற்கான பாதை" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" -msgstr "" +msgstr "பொது விருப்பங்கள்" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" -msgstr "" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" +msgstr "எல்லா கோப்புகளையும் எழுதுங்கள் (இயல்புநிலை: புதிய மற்றும் மாற்றப்பட்ட கோப்புகளை மட்டும் எழுதுங்கள்)" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" +msgstr "சேமித்த சூழலைப் பயன்படுத்த வேண்டாம், எப்போதும் எல்லா கோப்புகளையும் படியுங்கள்" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" -msgstr "" +msgid "override a setting in configuration file" +msgstr "உள்ளமைவு கோப்பில் ஒரு அமைப்பை மீறவும்" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgid "pass a value into HTML templates" +msgstr "HTML வார்ப்புருக்களில் ஒரு மதிப்பை அனுப்பவும்" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "குறிச்சொல்லை வரையறுக்கவும்: குறிச்சொல்லுடன் \"மட்டும்\" தொகுதிகளைச் சேர்க்கவும்" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "வெளியீட்டு விருப்பங்கள் ஆறுதல்" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" -msgstr "" +msgstr "வாய்மொழி அதிகரிக்கவும் (மீண்டும் மீண்டும் செய்யலாம்)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" -msgstr "" +msgstr "stdout இல் வெளியீடு இல்லை, ஸ்டெர்ரரில் எச்சரிக்கைகள்" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" -msgstr "" +msgstr "எந்த வெளியீடும் இல்லை, எச்சரிக்கைகள் கூட இல்லை" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "வண்ண வெளியீட்டை வெளியிடுங்கள் (இயல்புநிலை: தானாக-கண்டறிதல்)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" +msgstr "வண்ண வெளியீட்டை வெளியிட வேண்டாம் (இயல்புநிலை: தானாக கண்டறிதல்)" + +#: sphinx/cmd/build.py:199 +msgid "warning control options" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "கொடுக்கப்பட்ட கோப்பிற்கு எச்சரிக்கைகள் (மற்றும் பிழைகள்) எழுதுங்கள்" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" -msgstr "" +msgstr "எச்சரிக்கைகளை பிழைகளாக மாற்றவும்" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" -msgstr "" +msgstr "விதிவிலக்கில் முழு சுவடுப்பைக் காட்டுங்கள்" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" -msgstr "" +msgstr "விதிவிலக்கில் PDB ஐ இயக்கவும்" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "-a விருப்பம் மற்றும் கோப்பு பெயர்களை இணைக்க முடியாது" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "எச்சரிக்கை கோப்பு %r: %s ஐ திறக்க முடியாது" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "-D விருப்ப வாதம் படிவத்தில் பெயர் = மதிப்பு இருக்க வேண்டும்" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "-ஒரு விருப்ப வாதம் படிவத்தில் இருக்க வேண்டும் பெயர் = மதிப்பு" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" -msgstr "" +msgstr "தொகுதிகளிலிருந்து தானாக ஆவணங்களை செருகவும்" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgstr "டாக்ஸ்டெஸ்ட் தொகுதிகளில் குறியீடு துணுக்குகளை தானாகவே சோதிக்கவும்" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" -msgstr "" +msgstr "வெவ்வேறு திட்டங்களின் SPHINX ஆவணங்களுக்கு இடையிலான இணைப்பு" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" +msgstr "கட்டியெழுப்ப அல்லது மறைக்கக்கூடிய \"டோடோ\" உள்ளீடுகளை எழுதுங்கள்" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" -msgstr "" +msgstr "ஆவணங்கள் கவரேஜ் காசோலைகள்" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" -msgstr "" +msgstr "கணிதத்தை சேர்க்கவும், பி.என்.ஜி அல்லது எஸ்.வி.ஜி படங்களாக வழங்கப்படுகிறது" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgstr "கணிதத்தை சேர்க்கவும், மேத்ஜாக்ஸால் உலாவியில் வழங்கப்படுகிறது" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" -msgstr "" +msgstr "கட்டமைப்பு மதிப்புகளின் அடிப்படையில் உள்ளடக்கத்தை நிபந்தனைக்குட்பட்டது" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" -msgstr "" +msgstr "ஆவணப்படுத்தப்பட்ட பைதான் பொருள்களின் மூலக் குறியீட்டிற்கான இணைப்புகளைச் சேர்க்கவும்" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "கிதுப் பக்கங்களில் ஆவணத்தை வெளியிட .nojekyl கோப்பை உருவாக்கவும்" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." -msgstr "" +msgstr "சரியான பாதை பெயரை உள்ளிடவும்." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." -msgstr "" +msgstr "சில உரையை உள்ளிடவும்." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "தயவுசெய்து %s இல் ஒன்றை உள்ளிடவும்." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "தயவுசெய்து 'y' அல்லது 'n' ஐ உள்ளிடவும்." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "தயவுசெய்து ஒரு கோப்பு பின்னொட்டை உள்ளிடவும், எ.கா. '.rst' அல்லது '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Sphinx %S QUICKSTART பயன்பாட்டிற்கு வருக." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "பின்வரும் அமைப்புகளுக்கான மதிப்புகளை உள்ளிடவும் (Enter க்கு அழுத்தவும் \n அடைப்புக்குறிக்குள் வழங்கப்பட்டால் இயல்புநிலை மதிப்பை ஏற்றுக்கொள்ளுங்கள்)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" -msgstr "" +msgstr "தேர்ந்தெடுக்கப்பட்ட ரூட் பாதை: %கள்" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." -msgstr "" +msgstr "ஆவணங்களுக்கான ரூட் பாதையை உள்ளிடவும்." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" -msgstr "" +msgstr "ஆவணங்களுக்கான ரூட் பாதை" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "பிழை: தேர்ந்தெடுக்கப்பட்ட ரூட் பாதையில் ஏற்கனவே உள்ள conf.py கண்டறியப்பட்டுள்ளது." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "ஸ்பிங்க்ஸ்-கிக்ஸ்டார்ட் ஏற்கனவே உள்ள ஸ்பிங்க்ஸ் திட்டங்களை மேலெழுதாது." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "தயவுசெய்து ஒரு புதிய ரூட் பாதையை உள்ளிடவும் (அல்லது வெளியேற உள்ளிடவும்)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." -msgstr "" +msgstr "SPHINX வெளியீட்டிற்கான உருவாக்க கோப்பகத்தை வைக்க உங்களுக்கு இரண்டு விருப்பங்கள் உள்ளன. \n ஒன்று, நீங்கள் ரூட் பாதையில் \"_ பில்ட்\" என்ற கோப்பகத்தைப் பயன்படுத்துகிறீர்கள், அல்லது நீங்கள் பிரிக்கிறீர்கள் \n மூல பாதையில் \"மூல\" மற்றும் \"உருவாக்க\" கோப்பகங்கள்." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "தனி மூல மற்றும் உருவாக்க கோப்பகங்களை உருவாக்குதல் (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." -msgstr "" +msgstr "ரூட் கோப்பகத்தின் உள்ளே, மேலும் இரண்டு கோப்பகங்கள் உருவாக்கப்படும்; \"_TEMPLATES\" \n தனிப்பயன் HTML வார்ப்புருக்கள் மற்றும் தனிப்பயன் நடைதாள் மற்றும் பிற நிலையான \"_ஸ்டாடிக்\" \n கோப்புகள். அடிக்கோடிட்டதை மாற்ற மற்றொரு முன்னொட்டை (\".\" போன்றவை) உள்ளிடலாம்." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "வார்ப்புருக்கள் மற்றும் நிலையான டிர் ஆகியவற்றிற்கான பெயர் முன்னொட்டு" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "கட்டமைக்கப்பட்ட ஆவணங்களில் பல இடங்களில் திட்ட பெயர் நிகழும்." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" -msgstr "" +msgstr "திட்ட பெயர்" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" -msgstr "" +msgstr "ஆசிரியரின் பெயர் (கள்)" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "ஸ்பிங்க்ஸ் ஒரு \"பதிப்பு\" மற்றும் \"வெளியீடு\" என்ற கருத்தை கொண்டுள்ளது \n மென்பொருள். ஒவ்வொரு பதிப்பிலும் பல வெளியீடுகள் இருக்கலாம். உதாரணமாக, \n பைதான் பதிப்பு 2.5 அல்லது 3.0 போன்றது, அதே நேரத்தில் வெளியீடு \n 2.5.1 அல்லது 3.0A1 போன்றது. இந்த இரட்டை அமைப்பு உங்களுக்கு தேவையில்லை என்றால், \n இரண்டையும் ஒரே மதிப்புக்கு அமைக்கவும்." -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" -msgstr "" +msgstr "திட்ட பதிப்பு" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" -msgstr "" +msgstr "திட்ட வெளியீடு" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1528,115 +1577,115 @@ msgid "" "\n" "For a list of supported codes, see\n" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -msgstr "" +msgstr "ஆவணங்கள் ஆங்கிலத்தைத் தவிர வேறு மொழியில் எழுதப்பட வேண்டும் என்றால், \n ஒரு மொழியை அதன் மொழிக் குறியீட்டால் இங்கே தேர்ந்தெடுக்கலாம். ஸ்பிங்க்ஸ் பின்னர் \n அது உருவாக்கும் உரையை அந்த மொழியில் மொழிபெயர்க்கவும். \n\n ஆதரவு குறியீடுகளின் பட்டியலுக்கு, பார்க்கவும் \n https://www.sphinx-doc.org/en/master/usage/configuration.html#confval- மொழி." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" -msgstr "" +msgstr "திட்ட மொழி" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "மூல கோப்புகளுக்கான கோப்பு பெயர் பின்னொட்டு. பொதுவாக, இது \".txt\" \n அல்லது \".rst\". இந்த பின்னொட்டுடன் கூடிய கோப்புகள் மட்டுமே ஆவணங்களாக கருதப்படுகின்றன." -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" -msgstr "" +msgstr "மூல கோப்பு பின்னொட்டு" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" "of the documents. Normally, this is \"index\", but if your \"index\"\n" "document is a custom template, you can also set this to another filename." -msgstr "" +msgstr "ஒரு ஆவணம் சிறப்பு வாய்ந்தது, இது மேல் முனையாக கருதப்படுகிறது \n \"உள்ளடக்க மரம்\", அதாவது, இது படிநிலை கட்டமைப்பின் வேர் \n ஆவணங்களில். பொதுவாக, இது \"குறியீட்டு\", ஆனால் உங்கள் \"குறியீட்டு\" என்றால் \n ஆவணம் ஒரு தனிப்பயன் வார்ப்புரு, இதை நீங்கள் மற்றொரு கோப்பு பெயராக அமைக்கலாம்." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "உங்கள் முதன்மை ஆவணத்தின் பெயர் (பின்னொட்டு இல்லாமல்)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "பிழை: முதன்மை கோப்பு %s ஏற்கனவே தேர்ந்தெடுக்கப்பட்ட ரூட் பாதையில் கண்டறியப்பட்டுள்ளது." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "SPHINX-QUICKSTART இருக்கும் கோப்பை மேலெழுதாது." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "தயவுசெய்து ஒரு புதிய கோப்பு பெயரை உள்ளிடவும் அல்லது இருக்கும் கோப்பை மறுபெயரிட்டு Enter ஐ அழுத்தவும்" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "பின்வரும் ஸ்பிங்க்ஸ் நீட்டிப்புகளில் எது இயக்கப்பட வேண்டும் என்பதைக் குறிக்கவும்:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "குறிப்பு: ஒரே நேரத்தில் இம்க்மாத் மற்றும் மேத்ஜாக்ஸை இயக்க முடியாது. இம்க்மத் தேர்வு செய்யப்பட்டது." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." -msgstr "" +msgstr "ஒரு மேக்ஃபைல் மற்றும் விண்டோஸ் கட்டளை கோப்பை உங்களுக்காக உருவாக்கலாம், இதனால் நீங்கள் \n எ.கா. ஸ்பின்க்ஸ்-பில்ட் செய்வதற்கு பதிலாக `HTML ஐ உருவாக்கவும் ' \n நேரடியாக." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "மேக்ஃபைலை உருவாக்கவா? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "விண்டோஸ் கட்டளை கோப்பை உருவாக்கவா? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "கோப்பு %s ஐ உருவாக்குதல்." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "கோப்பு %s ஏற்கனவே உள்ளது, தவிர்க்கிறது." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "முடிந்தது: ஆரம்ப அடைவு அமைப்பு உருவாக்கப்பட்டுள்ளது." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "நீங்கள் இப்போது உங்கள் முதன்மை கோப்பு %s ஐ விரிவுபடுத்தி பிற ஆவணங்களை உருவாக்க வேண்டும் \n மூல கோப்புகள்." -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "" +msgstr "டாக்ஸை உருவாக்க மேக்ஃபைலைப் பயன்படுத்தவும்: \n பில்டரை உருவாக்குங்கள்" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" -msgstr "" +msgstr "டாக்ஸை உருவாக்க ஸ்பின்க்ஸ்-பில்ட் கட்டளையைப் பயன்படுத்தவும்: \n Sphinx -build -b பில்டர் %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." -msgstr "" +msgstr "\"பில்டர்\" என்பது ஆதரிக்கப்பட்ட பில்டர்களில் ஒன்றாகும், எ.கா. HTML, லேடெக்ஸ் அல்லது லிங்க்செக்." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1644,780 +1693,785 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "ஸ்பிங்க்ஸ் திட்டத்திற்கு தேவையான கோப்புகளை உருவாக்கவும். \n\n Sphinx-quickstart என்பது உங்களைப் பற்றி சில கேள்விகளைக் கேட்கும் ஒரு ஊடாடும் கருவியாகும் \n திட்டம் மற்றும் பின்னர் ஒரு முழுமையான ஆவண அடைவு மற்றும் மாதிரி உருவாக்குகிறது \n Sphinx- கட்டளையுடன் பயன்படுத்த மேக்ஃபைல்." -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" -msgstr "" +msgstr "அமைதியான பயன்முறை" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" -msgstr "" +msgstr "திட்ட வேர்" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" -msgstr "" +msgstr "கட்டமைப்பு விருப்பங்கள்" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "குறிப்பிடப்பட்டால், மூலத்தை பிரித்து dirs ஐ உருவாக்குங்கள்" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" -msgstr "" +msgstr "குறிப்பிடப்பட்டால், மூல dir இன் கீழ் உருவாக்க dir ஐ உருவாக்குங்கள்" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." -msgstr "" +msgstr "_TEMPLATES போன்றவற்றில் DOT க்கு மாற்றீடு." -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" -msgstr "" +msgstr "அடிப்படை விருப்பங்களை திட்டமிடுங்கள்" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" -msgstr "" +msgstr "திட்ட பெயர்" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" -msgstr "" +msgstr "ஆசிரியர் பெயர்கள்" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" -msgstr "" +msgstr "திட்டத்தின் பதிப்பு" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" -msgstr "" +msgstr "திட்டத்தின் வெளியீடு" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" -msgstr "" +msgstr "ஆவண மொழி" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" -msgstr "" +msgstr "மூல கோப்பு பின்னொட்டு" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" -msgstr "" +msgstr "முதன்மை ஆவண பெயர்" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" -msgstr "" +msgstr "எபப் பயன்படுத்தவும்" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" -msgstr "" +msgstr "நீட்டிப்பு விருப்பங்கள்" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "%கள் நீட்டிப்பை இயக்கவும்" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" -msgstr "" +msgstr "தன்னிச்சையான நீட்டிப்புகளை இயக்கவும்" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "மேக்ஃபைல் மற்றும் பேட்ச்பைல் உருவாக்கம்" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" -msgstr "" +msgstr "மேக்ஃபைலை உருவாக்கவும்" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" -msgstr "" +msgstr "மேக்ஃபைலை உருவாக்க வேண்டாம்" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" -msgstr "" +msgstr "தொகுதி கோப்பை உருவாக்கவும்" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" -msgstr "" +msgstr "தொகுதி கோப்பை உருவாக்க வேண்டாம்" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" -msgstr "" +msgstr "MakeFile/make.bat க்கு மேக்-பயன்முறையைப் பயன்படுத்தவும்" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" -msgstr "" +msgstr "MakeFile/make.bat க்கு மேக்-பயன்முறையைப் பயன்படுத்த வேண்டாம்" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" -msgstr "" +msgstr "திட்ட வார்ப்புரு" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" -msgstr "" +msgstr "வார்ப்புரு கோப்புகளுக்கான வார்ப்புரு அடைவு" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" -msgstr "" +msgstr "ஒரு வார்ப்புரு மாறியை வரையறுக்கவும்" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "" +msgstr "\"அமைதியானது\" குறிப்பிடப்பட்டுள்ளது, ஆனால் \"திட்டம்\" அல்லது \"ஆசிரியர்\" எதுவும் குறிப்பிடப்படவில்லை." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "பிழை: குறிப்பிட்ட பாதை ஒரு அடைவு அல்ல, அல்லது ஸ்பிங்க்ஸ் கோப்புகள் ஏற்கனவே உள்ளன." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "ஸ்பின்க்ஸ்-கிக்ஸ்டார்ட் ஒரு வெற்று கோப்பகமாக மட்டுமே உருவாக்குகிறது. புதிய ரூட் பாதையை குறிப்பிடவும்." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "தவறான வார்ப்புரு மாறி: %கள்" #: sphinx/directives/code.py:61 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "வெண்மையானது அல்லாதது" #: sphinx/directives/code.py:82 #, python-format msgid "Invalid caption: %s" -msgstr "" +msgstr "தவறான தலைப்புகள்" #: sphinx/directives/code.py:127 sphinx/directives/code.py:277 #: sphinx/directives/code.py:453 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "வரி எண் ஸ்பெக் வரம்பில் இல்லை (1- %d): %r" #: sphinx/directives/code.py:206 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "" +msgstr "\"%கள்\" மற்றும் \"%கள்\" விருப்பங்கள் இரண்டையும் பயன்படுத்த முடியாது" #: sphinx/directives/code.py:220 #, python-format msgid "Include file %r not found or reading it failed" -msgstr "" +msgstr "கோப்பு %r கண்டுபிடிக்கப்படவில்லை அல்லது அதைப் படிப்பது தோல்வியுற்றது" #: sphinx/directives/code.py:223 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" -msgstr "" +msgstr "சேர்க்கப்பட்ட கோப்பு %r என்பது தவறானதாகத் தெரிகிறது, ஒரு: குறியாக்கம்: விருப்பம் கொடுக்க முயற்சிக்கவும்" #: sphinx/directives/code.py:260 #, python-format msgid "Object named %r not found in include file %r" -msgstr "" +msgstr "%R இல் காணப்படாத பொருள் கோப்பு %r அடங்கும்" #: sphinx/directives/code.py:286 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" -msgstr "" +msgstr "\"லினெனோ-மேட்ச்\" ஐ \"கோடுகளின்\" ஒத்ததாக பயன்படுத்த முடியாது" #: sphinx/directives/code.py:291 #, python-format msgid "Line spec %r: no lines pulled from include file %r" -msgstr "" +msgstr "வரி ஸ்பெக் %ஆர்: எந்த வரிகளும் இல்லை கோப்பு %ஆர் சேர்க்கப்படவில்லை" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "டோக்ட்ரீ குளோப் முறை %ஆர் எந்த ஆவணங்களுக்கும் பொருந்தவில்லை" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" -msgstr "" +msgstr "டோக்ட்ரீ விலக்கப்பட்ட ஆவணம் %ஆர் பற்றிய குறிப்பு உள்ளது" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "டோக்ட்ரீ இல்லாத ஆவணம் %r பற்றிய குறிப்பு உள்ளது" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "டோக்ட்ரீயில் காணப்படும் நகல் நுழைவு: %கள்" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " -msgstr "" +msgstr "பிரிவு ஆசிரியர்:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " -msgstr "" +msgstr "தொகுதி ஆசிரியர்:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " -msgstr "" +msgstr "குறியீடு ஆசிரியர்:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " -msgstr "" +msgstr "நூலாசிரியர்:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" -msgstr "" +msgstr ".. ACKS உள்ளடக்கம் ஒரு பட்டியல் அல்ல" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" -msgstr "" +msgstr ".. HLIST உள்ளடக்கம் ஒரு பட்டியல் அல்ல" #: sphinx/directives/patches.py:66 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "" +msgstr "\": கோப்பு:\" சி.எஸ்.வி-டேபிள் டைரெக்டிவ் விருப்பம் இப்போது ஒரு முழுமையான பாதையை மூல கோப்பகத்திலிருந்து தொடர்புடைய பாதையாக அங்கீகரிக்கிறது. உங்கள் ஆவணத்தை புதுப்பிக்கவும்." #: sphinx/domains/__init__.py:397 #, python-format msgid "%s %s" -msgstr "" +msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" -msgstr "" +msgid "Changed in version %s" +msgstr "பதிப்பு %s இல் மாற்றப்பட்டது" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" +msgstr "பதிப்பு %s முதல் நீக்கப்பட்டது" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "நகல் மேற்கோள் %s, %s இல் மற்ற நிகழ்வு" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "மேற்கோள் [%கள்] குறிப்பிடப்படவில்லை." -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" +msgstr "%s () (உள்ளமைக்கப்பட்ட செயல்பாடு)" -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" +msgstr "%s () (%s முறை)" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "%கள் () (வகுப்பு)" -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" +msgstr "%கள் (உலகளாவிய மாறி அல்லது மாறிலி)" -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" +msgstr "%s (%s பண்புக்கூறு)" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" +msgstr "வாதங்கள்" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "வீசுகிறது" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "வருமானம்" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "திரும்ப வகை" -#: sphinx/domains/changeset.py:23 +#: sphinx/domains/javascript.py:331 #, python-format -msgid "New in version %s" -msgstr "" +msgid "%s (module)" +msgstr "%கள் (தொகுதி)" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "செயல்பாடு" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" -msgstr "" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" +msgstr "முறை" + +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "வர்க்கம்" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" +msgstr "தகவல்கள்" + +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "பண்புக்கூறு" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "தொகுதி" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgid "duplicate %s description of %s, other %s in %s" +msgstr "%s இன் %s விளக்கம், %s இல் மற்ற %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." -msgstr "" +msgid "duplicate label of equation %s, other instance in %s" +msgstr "சமன்பாடு %s இன் நகல் லேபிள், %s இல் மற்ற நிகழ்வு" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" +msgid "Invalid math_eqref_format: %r" +msgstr "தவறான MATH_EQREF_FORMAT: %r" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%கள் (உத்தரவு)" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" -msgstr "" +msgid ":%s: (directive option)" +msgstr ":%s: (உத்தரவு விருப்பம்)" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%கள் (பங்கு)" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "" +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "உத்தரவு" -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "உத்தரவு-விருப்பம்" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "பங்கு" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" -msgstr "" +msgid "duplicate description of %s %s, other instance in %s" +msgstr "%s %s இன் நகல் விளக்கம், %s இல் மற்ற நிகழ்வு" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" -msgstr "" +msgid "%s (C %s)" +msgstr "%s (c %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" -msgstr "" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "நகல் சி அறிவிப்பு, %s: %s இல் வரையறுக்கப்பட்டுள்ளது. \n அறிவிப்பு '.. c: %s :: %s'." -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" -msgstr "" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "அளவுருக்கள்" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" -msgstr "" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "திரும்ப மதிப்புகள்" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" -msgstr "" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "உறுப்பினர்" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" -msgstr "" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "மாறக்கூடிய" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" -msgstr "" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "பெரு" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" -msgstr "" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "கட்டமைப்பு" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" -msgstr "" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "தொழிற்சங்கம்" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" -msgstr "" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" -msgstr "" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "கணக்காளர்" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "தட்டச்சு செய்க" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "செயல்பாடு அளவுரு" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "வார்ப்புரு அளவுருக்கள்" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" -msgstr "" +msgid "%s (C++ %s)" +msgstr "%s (c ++ %s)" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" -msgstr "" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "சி ++ பிரகடனத்தை நகல், %கள்: %s இல் வரையறுக்கப்படுகிறது. \n அறிவிப்பு '.. CPP: %s :: %s'." -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "கருத்து" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "வார்ப்புரு அளவுரு" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" -msgstr "" +msgstr "%s () (தொகுதி %s இல்)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" -msgstr "" +msgstr "%s (தொகுதி %s இல்)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" -msgstr "" +msgstr "%கள் (உள்ளமைக்கப்பட்ட மாறி)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" -msgstr "" +msgstr "%கள் (உள்ளமைக்கப்பட்ட வகுப்பு)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" -msgstr "" +msgstr "%கள் ( %s இல் வகுப்பு)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" -msgstr "" +msgstr "%s () (%s வகுப்பு முறை)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" -msgstr "" +msgstr "%s () (%s நிலையான முறை)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%கள் (%s சொத்து)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" -msgstr "" +msgstr "பைதான் தொகுதி அட்டவணை" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" -msgstr "" +msgstr "தொகுதிகள்" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" -msgstr "" +msgstr "மதிப்பிடப்பட்டது" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" -msgstr "" +msgstr "விதிவிலக்கு" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" -msgstr "" +msgstr "வகுப்பு முறை" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" -msgstr "" +msgstr "நிலையான முறை" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" -msgstr "" +msgstr "சொத்து" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" -msgstr "" +msgstr "%s இன் நகல் பொருள் விளக்கம், %s இல் உள்ள பிற நிகழ்வு, பயன்பாடு: இல்லை-குறியீட்டு: அவற்றில் ஒன்று" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "" +msgstr "குறுக்கு-குறிப்புக்கு ஒன்றுக்கு மேற்பட்ட இலக்குகள் %r: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" -msgstr "" +msgstr "(நீக்கப்பட்டது)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "மாறிகள்" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "எழுப்புகிறது" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" -msgstr "" +msgstr "சுற்றுச்சூழல் மாறி; %கள்" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "" +msgstr "தவறான விருப்பமான விளக்கம் %r, \"OPT\", \"-OPT ARGS\", \"--opt args\", \"/Opt args\" அல்லது \"+Opt args\"" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" -msgstr "" +msgstr "%S கட்டளை வரி விருப்பம்" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" -msgstr "" +msgstr "கட்டளை வரி விருப்பம்" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" -msgstr "" +msgstr "சொற்களஞ்சியம் காலத்திற்கு முன்னதாக இருக்க வேண்டும்" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" -msgstr "" +msgstr "சொற்களஞ்சிய சொற்கள் வெற்று கோடுகளால் பிரிக்கப்படக்கூடாது" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" -msgstr "" +msgstr "சொற்களஞ்சியம் தவறாகப் புரிந்து கொள்ளப்பட்டதாகத் தெரிகிறது, உள்தள்ளலை சரிபார்க்கவும்" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" -msgstr "" +msgstr "சொற்களஞ்சிய கால" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" -msgstr "" +msgstr "இலக்கண டோக்கன்" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" -msgstr "" +msgstr "குறிப்பு லேபிள்" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" -msgstr "" +msgstr "சுற்றுச்சூழல் மாறி" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" -msgstr "" +msgstr "நிரல் விருப்பம்" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" -msgstr "" +msgstr "ஆவணம்" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" -msgstr "" +msgstr "தொகுதி அட்டவணை" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" -msgstr "" +msgstr "தேடல் பக்கம்" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "நகல் லேபிள் %கள், பிற நிகழ்வுகள் %s இல்" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" -msgstr "" +msgstr "%s இன் %s விளக்கம், %s இல் மற்ற நிகழ்வு" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." -msgstr "" +msgstr "NUMFIG முடக்கப்பட்டுள்ளது. : எண்ரெஃப்: புறக்கணிக்கப்படுகிறது." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "" +msgstr "குறுக்கு குறிப்பை உருவாக்கத் தவறிவிட்டது. எந்த எண்ணும் ஒதுக்கப்படவில்லை: %கள்" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "இணைப்புக்கு தலைப்பு இல்லை: %கள்" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "" +msgstr "தவறான numfig_format: %s ( %r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" -msgstr "" +msgstr "தவறான numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" -msgstr "" +msgstr "வரையறுக்கப்படாத லேபிள்: %ஆர்" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" -msgstr "" +msgstr "குறுக்கு குறிப்பை உருவாக்கத் தவறிவிட்டது. ஒரு தலைப்பு அல்லது தலைப்பு கிடைக்கவில்லை: %r" #: sphinx/environment/__init__.py:71 msgid "new config" -msgstr "" +msgstr "புதிய கட்டமைப்பு" #: sphinx/environment/__init__.py:72 msgid "config changed" -msgstr "" +msgstr "கட்டமைப்பு மாற்றப்பட்டது" #: sphinx/environment/__init__.py:73 msgid "extensions changed" -msgstr "" +msgstr "நீட்டிப்புகள் மாற்றப்பட்டன" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" -msgstr "" +msgstr "சுற்றுச்சூழல் பதிப்பை உருவாக்குங்கள்" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" -msgstr "" +msgstr "மூல அடைவு மாறிவிட்டது" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "" +msgstr "இந்த சூழல் தேர்ந்தெடுக்கப்பட்ட பில்டருடன் பொருந்தாது, தயவுசெய்து மற்றொரு கோட்பாட்டு கோப்பகத்தைத் தேர்வுசெய்க." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "" +msgstr "%S இல் ஆவணங்களை ஸ்கேன் செய்வதில் தோல்வி: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "டொமைன் %ஆர் பதிவு செய்யப்படவில்லை" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" -msgstr "" +msgstr "எந்த டோக்ட்ரீயிலும் ஆவணம் சேர்க்கப்படவில்லை" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." -msgstr "" +msgstr "சுய குறிப்பிடப்பட்ட டோக்ட்ரீ கண்டுபிடிக்கப்பட்டது. புறக்கணிக்கப்பட்டது." #: sphinx/environment/adapters/indexentries.py:69 #, python-format msgid "see %s" -msgstr "" +msgstr "%கள் பார்க்கவும்" #: sphinx/environment/adapters/indexentries.py:73 #, python-format msgid "see also %s" -msgstr "" +msgstr "%கள் மேலும் காண்க" #: sphinx/environment/adapters/indexentries.py:76 #, python-format msgid "unknown index entry type %r" -msgstr "" +msgstr "அறியப்படாத குறியீட்டு நுழைவு வகை %r" #: sphinx/environment/adapters/indexentries.py:187 #: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" -msgstr "" +msgstr "சின்னங்கள்" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "சுற்றறிக்கை டோக்ட்ரீ குறிப்புகள் கண்டறியப்பட்டன, புறக்கணித்தல்: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" -msgstr "" +msgstr "டோக்ட்ரீ ஒரு தலைப்பு இல்லாத ஆவணம் %r க்கு குறிப்பு உள்ளது: எந்த இணைப்பும் உருவாக்கப்படாது" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" -msgstr "" +msgstr "டோக்ட்ரீ சேர்க்கப்படாத ஆவணம் %r பற்றிய குறிப்பு உள்ளது" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "படக் கோப்பு படிக்க முடியாது: %கள்" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "படக் கோப்பு %s படிக்க முடியாதது: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "கோப்பைப் பதிவிறக்க முடியாது: %கள்" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "" +msgstr "%கள் ஏற்கனவே பிரிவு எண்களை ஒதுக்கியுள்ளன (உள்ளமைக்கப்பட்ட எண்ணுள்ள டோக்ட்ரீ?)" #: sphinx/ext/apidoc.py:86 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "கோப்பு %s ஐ உருவாக்கும்." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2427,228 +2481,228 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "" +msgstr "பைதான் தொகுதிகள் மற்றும் தொகுப்புகளுக்கு <தொகுதி_பாத்> இல் மீண்டும் மீண்டும் பார்க்கவும் \n இல் ஒரு தொகுப்புக்கு ஆட்டோமோடூல் வழிமுறைகளுடன் ஒரு ஓய்வு கோப்பு. \n\n கள் கோப்பு மற்றும்/அல்லது அடைவு வடிவங்களாக இருக்கலாம் \n தலைமுறையிலிருந்து விலக்கப்பட்டது. \n\n குறிப்பு: இயல்பாக இந்த ஸ்கிரிப்ட் ஏற்கனவே உருவாக்கிய கோப்புகளை மேலெழுதாது." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" -msgstr "" +msgstr "ஆவணத்திற்கான தொகுதிக்கான பாதை" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "" +msgstr "fnmatch- பாணி கோப்பு மற்றும்/அல்லது கோப்பக வடிவங்கள் தலைமுறையிலிருந்து விலக்க" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" -msgstr "" +msgstr "அனைத்து வெளியீட்டையும் வைக்க அடைவு" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "TOC இல் காண்பிக்க சப்மோடூல்களின் அதிகபட்ச ஆழம் (இயல்புநிலை: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" -msgstr "" +msgstr "இருக்கும் கோப்புகளை மேலெழுதவும்" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "குறியீட்டு இணைப்புகளைப் பின்பற்றவும். Cologetive.recipe.omelette உடன் இணைந்தால் சக்திவாய்ந்தவர்." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" -msgstr "" +msgstr "கோப்புகளை உருவாக்காமல் ஸ்கிரிப்டை இயக்கவும்" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" -msgstr "" +msgstr "ஒவ்வொரு தொகுதிக்கும் ஆவணங்களை அதன் சொந்த பக்கத்தில் வைக்கவும்" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" -msgstr "" +msgstr "\"_ பிரைவேட்\" தொகுதிகள் சேர்க்கவும்" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" -msgstr "" +msgstr "உள்ளடக்க அட்டவணையின் கோப்பு பெயர் (இயல்புநிலை: தொகுதிகள்)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" -msgstr "" +msgstr "உள்ளடக்கக் கோப்பின் அட்டவணையை உருவாக்க வேண்டாம்" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "" +msgstr "தொகுதி/தொகுப்பு தொகுப்புகளுக்கான தலைப்புகளை உருவாக்க வேண்டாம் (எ.கா. ஆவணங்கள் ஏற்கனவே அவற்றைக் கொண்டிருக்கும்போது)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr "தொகுதி ஆவணங்களை சப்மோடூல் ஆவணங்களுக்கு முன் வைக்கவும்" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "" +msgstr "PEP-0420 மறைமுக பெயர்வெளிகளின் விவரக்குறிப்பின் படி தொகுதி பாதைகளை விளக்குங்கள்" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" -msgstr "" +msgstr "கோப்பு பின்னொட்டு (இயல்புநிலை: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" -msgstr "" +msgstr "ஸ்பின்க்ஸ்-க்யூக்ஸ்டார்ட்டுடன் ஒரு முழு திட்டத்தை உருவாக்கவும்" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" -msgstr "" +msgstr "sys.path உடன் தொகுதி_பாத், --full கொடுக்கப்படும் போது பயன்படுத்தப்படுகிறது" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" -msgstr "" +msgstr "திட்ட பெயர் (இயல்புநிலை: ரூட் தொகுதி பெயர்)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "திட்ட ஆசிரியர் (கள்), -ஃபுல் வழங்கப்படும் போது பயன்படுத்தப்படுகிறது" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" -msgstr "" +msgstr "திட்ட பதிப்பு, -ஃபுல் வழங்கப்படும் போது பயன்படுத்தப்படுகிறது" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "" +msgstr "திட்ட வெளியீடு, --full வழங்கப்படும் போது பயன்படுத்தப்படுகிறது, இயல்புநிலை--டாக்-பதவியே" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" -msgstr "" +msgstr "நீட்டிப்பு விருப்பங்கள்" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%கள் ஒரு அடைவு அல்ல." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" -msgstr "" +msgstr "\"%கள்\" பிரிவு \"%கள்\" என்று பெயரிடப்படுகிறது" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "%s இல் தவறான ரீஜெக்ஸ் %r" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "" +msgstr "முடிக்கப்பட்ட ஆதாரங்களில் கவரேஜ் சோதனை செய்வது, %(வெளிப்புற) spython.txt இல் முடிவுகளைப் பாருங்கள்." -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "கவரேஜ்_சி_ரெஜெக்ஸில் தவறான ரீஜெக்ஸ் %ஆர்" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" -msgstr "" +msgstr "ஆவணப்படுத்தப்படாத சி ஏபிஐ: கோப்பு %s இல் %s [ %s]" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "தொகுதி %கள் இறக்குமதி செய்ய முடியவில்லை: %கள்" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "" +msgstr "ஆவணமற்ற பைதான் செயல்பாடு: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "" +msgstr "ஆவணமற்ற பைதான் வகுப்பு: %கள் :: %கள்" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "" +msgstr "ஆவணமற்ற பைதான் முறை: %கள் :: %s :: %s" #: sphinx/ext/doctest.py:115 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "" +msgstr "'%s' விருப்பத்தில் '+' அல்லது '-' காணவில்லை." #: sphinx/ext/doctest.py:120 #, python-format msgid "'%s' is not a valid option." -msgstr "" +msgstr "'%கள்' சரியான விருப்பம் அல்ல." #: sphinx/ext/doctest.py:134 #, python-format msgid "'%s' is not a valid pyversion option" -msgstr "" +msgstr "'%கள்' என்பது செல்லுபடியாகும் பைவெர்ஷன் விருப்பம் அல்ல" #: sphinx/ext/doctest.py:220 msgid "invalid TestCode type" -msgstr "" +msgstr "தவறான டெஸ்ட்கோட் வகை" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "முடிக்கப்பட்ட ஆதாரங்களில் ஆவணங்களின் சோதனை, %(வெளிப்புற) s/output.txt இன் முடிவுகளைப் பாருங்கள்." -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "" +msgstr "%s இல் %s தொகுதியில் குறியீடு/வெளியீடு இல்லை: %s: %s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "" +msgstr "தவறான ஆவணக் குறியீட்டை புறக்கணித்தல்: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" -msgstr "" +msgstr "==================== மெதுவாக வாசிப்பு காலங்கள் =========================" #: sphinx/ext/extlinks.py:82 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "ஹார்ட்கோட் செய்யப்பட்ட இணைப்பு %R ஐ எக்ஸ்ட்லிங்க் மூலம் மாற்றலாம் (அதற்கு பதிலாக %R ஐப் பயன்படுத்த முயற்சிக்கவும்)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" -msgstr "" +msgstr "கிராப்விஸ் டைரெக்டிவ் உள்ளடக்கம் மற்றும் கோப்பு பெயர் வாதம் இரண்டையும் கொண்டிருக்க முடியாது" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" -msgstr "" +msgstr "வெளிப்புற கிராப்விஸ் கோப்பு %r கண்டுபிடிக்கப்படவில்லை அல்லது அதைப் படிப்பது தோல்வியுற்றது" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." -msgstr "" +msgstr "உள்ளடக்கம் இல்லாமல் \"கிராஃப்விஸ்\" உத்தரவைப் புறக்கணித்தல்." -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" -msgstr "" +msgstr "braphviz_dot இயங்கக்கூடிய பாதை அமைக்கப்பட வேண்டும்! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" -msgstr "" +msgstr "DOT கட்டளை %R ஐ இயக்க முடியாது (கிராஃப்விஸ் வெளியீட்டிற்கு தேவை), கிராஃப்விஸ்_டோட் அமைப்பைச் சரிபார்க்கவும்" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2656,9 +2710,9 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "" +msgstr "பிழை பிழையுடன் வெளியேறியது: \n [stderr] \n %r \n [stdout] \n %r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2666,37 +2720,37 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "" +msgstr "புள்ளி ஒரு வெளியீட்டு கோப்பை உருவாக்கவில்லை: \n [stderr] \n %r \n [stdout] \n %r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" -msgstr "" +msgstr "braphviz_output_format 'png', 'svg' இல் ஒன்றாக இருக்க வேண்டும், ஆனால் %r ஆகும்" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "புள்ளி குறியீடு %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[வரைபடம்: %கள்]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" -msgstr "" +msgstr "[வரைபடம்]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" "\n" "Traceback: %s" -msgstr "" +msgstr "பட மாற்று கட்டளை %r ஐ இயக்க முடியவில்லை. 'sphinx.ext.imgconverter' இயல்புநிலையாக இமேஜ்மேஜிக் தேவைப்படுகிறது. இது நிறுவப்பட்டிருப்பதை உறுதிசெய்க, அல்லது தனிப்பயன் மாற்று கட்டளைக்கு 'படம்_கன்வெர்ட்டர்' விருப்பத்தை அமைக்கவும். \n\n ட்ரேஸ்பேக்: %கள்" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2704,314 +2758,319 @@ msgid "" "%r\n" "[stdout]\n" "%r" -msgstr "" +msgstr "பிழையுடன் வெளியேறுதல்: \n [stderr] \n %r \n [stdout] \n %r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" -msgstr "" +msgstr "கட்டளை %r ஐ இயக்க முடியாது, பட_கன்வெர்ட்டர் அமைப்பை சரிபார்க்கவும்" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "" +msgstr "Latex கட்டளை %R ஐ இயக்க முடியாது (கணித காட்சிக்கு தேவை), imgmath_latex அமைப்பைச் சரிபார்க்கவும்" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "" +msgstr "%s கட்டளை %R ஐ இயக்க முடியாது (கணித காட்சிக்கு தேவை), imgmath_ %s அமைப்பை சரிபார்க்கவும்" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" -msgstr "" +msgstr "லேடெக்ஸ் %ஆர்: %கள் காட்சி" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" -msgstr "" +msgstr "இன்லைன் லேடெக்ஸ் %ஆர்: %கள்" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" -msgstr "" +msgstr "இந்த சமன்பாட்டிற்கான இணைப்பு" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" +msgstr "இன்டெர்ஸ்பின்க்ஸ் சரக்கு நகர்ந்தது: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." -msgstr "" +msgstr "%s இலிருந்து இன்டர்ஸ்பின்க்ஸ் சரக்குகளை ஏற்றுகிறது ..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" -msgstr "" +msgstr "சில சரக்குகளுடன் சில சிக்கல்களை எதிர்கொண்டது, ஆனால் அவர்கள் வேலை மாற்று வழிகளைக் கொண்டிருந்தனர்:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" -msgstr "" +msgstr "பின்வரும் சிக்கல்களுடன் எந்த சரக்குகளையும் அடையத் தவறிவிட்டது:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "( %s v %s இல்)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" +msgstr "( %s இல்)" + +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "" +msgstr "வெளிப்புற %s: %S குறிப்பு இலக்கு காணப்படவில்லை: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" +msgstr "இன்டர்ஸ்பின்க்ஸ் அடையாளங்காட்டி %ஆர் சரம் அல்ல. புறக்கணிக்கப்பட்டது" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" -msgstr "" +msgstr "Intersphinx_mapph [ %s], புறக்கணிக்கப்பட்டது: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" -msgstr "" +msgstr "[மூல]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" -msgstr "" +msgstr "டோடோ" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "டோடோ நுழைவு காணப்பட்டது: %கள்" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" -msgstr "" +msgstr "<< அசல் நுழைவு >>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "" +msgstr "(<< அசல் நுழைவு >> %s, வரி %d இல் அமைந்துள்ளது.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" -msgstr "" +msgstr "அசல் நுழைவு" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " -msgstr "" +msgstr "தொகுதி குறியீட்டை முன்னிலைப்படுத்துகிறது ..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" -msgstr "" +msgstr "[டாக்ஸ்]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" -msgstr "" +msgstr "தொகுதி குறியீடு" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" -msgstr "" +msgstr "

%s

க்கான மூலக் குறியீடு" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" -msgstr "" +msgstr "கண்ணோட்டம்: தொகுதி குறியீடு" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" -msgstr "" +msgstr "

எந்த குறியீடு கிடைக்கும் அனைத்து தொகுதிகளும்

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" -msgstr "" +msgstr "உறுப்பினர்-வரிசை விருப்பத்திற்கான தவறான மதிப்பு: %கள்" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "" +msgstr "வகுப்பு-டாக்-ஃப்ரம் விருப்பத்திற்கான தவறான மதிப்பு: %கள்" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "" +msgstr "ஆட்டோ%s (%r) க்கான தவறான கையொப்பம்" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "%s: %s க்கான வாதங்களை வடிவமைக்கும்போது பிழை" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "ஆட்டோடோக்:%s.%s (%r) ஐ ஆவணப்படுத்தத் தவறிவிட்டது, பின்வரும் விதிவிலக்கு எழுப்பப்பட்டது: \n %கள்" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " "\"module\" or \"currentmodule\" directive in the document, or giving an " "explicit module name)" -msgstr "" +msgstr "தன்னியக்கமயமாக்கல் %r க்கு எந்த தொகுதி இறக்குமதி செய்ய வேண்டும் என்று தெரியவில்லை (ஆவணத்தில் ஒரு \"தொகுதி\" அல்லது \"தற்போதைய உருவம்\" கட்டளையை வைக்க முயற்சிக்கவும் அல்லது வெளிப்படையான தொகுதி பெயரைக் கொடுக்கவும்)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" -msgstr "" +msgstr "கேலி செய்யப்பட்ட பொருள் கண்டறியப்பட்டது: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "" +msgstr "%s: %s க்கான கையொப்பத்தை வடிவமைக்கும்போது பிழை" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" -msgstr "" +msgstr "\"::\" ஆட்டோமோடூல் பெயரில் அர்த்தமல்ல" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" -msgstr "" +msgstr "தானியங்கு %s க்கு வழங்கப்பட்ட கையொப்ப வாதங்கள் அல்லது திரும்ப சிறுகுறிப்பு" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" -msgstr "" +msgstr "__all__ என்பது சரங்களின் பட்டியலாக இருக்க வேண்டும், %R (தொகுதி %s இல்) அல்ல - __all__ ஐ புறக்கணிக்கிறது" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "" +msgstr "குறிப்பிடப்பட்ட பண்புக்கூறு பின்வருமாறு: உறுப்பினர்கள்: விருப்பம்: தொகுதி %கள், பண்புக்கூறு %கள்" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" -msgstr "" +msgstr "%S: %s க்கான செயல்பாட்டு கையொப்பத்தைப் பெறுவதில் தோல்வி" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" -msgstr "" +msgstr "%S: %s க்கு ஒரு கட்டமைப்பாளர் கையொப்பத்தைப் பெறுவதில் தோல்வி" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" -msgstr "" +msgstr "தளங்கள்: %கள்" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "பொருள் %s இல் உள்ள பண்புக்கூறு %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" -msgstr "" +msgstr "%கள் மாற்றுப்பெயர்" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" -msgstr "" +msgstr "டைப்வாரின் மாற்றுப்பெயர் (%கள்)" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" -msgstr "" +msgstr "%S க்கு ஒரு முறை கையொப்பத்தைப் பெறுவதில் தோல்வி: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "" +msgstr "தவறான __ ஸ்லாட் __ %s இல் காணப்படுகிறது. புறக்கணிக்கப்பட்டது." -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "" +msgstr "%R: %s க்கான இயல்புநிலை வாத மதிப்பை அலசுவதில் தோல்வி" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "" +msgstr "%R க்கான கையொப்பத்தை புதுப்பிக்கத் தவறிவிட்டது: அளவுரு காணப்படவில்லை: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" -msgstr "" +msgstr "%R: %s க்கு Type_comment ஐ பாகுபடுத்துவதில் தோல்வி" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." -msgstr "" +msgstr "தன்னியக்க குறிப்புகள் விலக்கப்பட்ட ஆவணம் %r. புறக்கணிக்கப்பட்டது." -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." -msgstr "" +msgstr "தன்னியக்க: STUB கோப்பு காணப்படவில்லை %r. உங்கள் தன்னியக்க_ஜெனரேட் அமைப்பை சரிபார்க்கவும்." -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "" +msgstr "தலைப்பிடப்பட்ட தன்னியக்க தேவைப்படுகிறது: டோக்ட்ரீ: விருப்பம். புறக்கணிக்கப்பட்டது." -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "தன்னியக்க: %s ஐ இறக்குமதி செய்வதில் தோல்வி. \n சாத்தியமான குறிப்புகள்: \n %கள்" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" -msgstr "" +msgstr "பெயர் %s என்ற பெயரை அலசத் தவறிவிட்டது" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" -msgstr "" +msgstr "பொருள் %s ஐ இறக்குமதி செய்வதில் தோல்வி" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" -msgstr "" +msgstr "autosummary_generate: கோப்பு கிடைக்கவில்லை: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3020,17 +3079,17 @@ msgstr "" msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "தன்னியக்க: ஆவணப்படுத்தப்பட வேண்டிய %R ஐ தீர்மானிக்கத் தவறிவிட்டது, பின்வரும் விதிவிலக்கு எழுப்பப்பட்டது: \n %கள்" #: sphinx/ext/autosummary/generate.py:470 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "" +msgstr "[தன்னியக்க] தன்னியக்கத்தை உருவாக்குதல்: %கள்" #: sphinx/ext/autosummary/generate.py:474 #, python-format msgid "[autosummary] writing to %s" -msgstr "" +msgstr "[தன்னியக்க] %கள் எழுதுதல்" #: sphinx/ext/autosummary/generate.py:517 #, python-format @@ -3038,7 +3097,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[தன்னியக்க] %s ஐ இறக்குமதி செய்யத் தவறிவிட்டது. \n சாத்தியமான குறிப்புகள்: \n %கள்" #: sphinx/ext/autosummary/generate.py:690 msgid "" @@ -3053,643 +3112,641 @@ msgid "" "``sphinx.ext.autosummary`` Python module and can be read using::\n" "\n" " pydoc sphinx.ext.autosummary\n" -msgstr "" +msgstr "தன்னியக்க வழிமுறைகளைப் பயன்படுத்தி மறுசீரமைப்பு டெக்ஸ்டை உருவாக்கவும். \n\n ஸ்பின்க்ஸ்-ஆட்டோஜென் என்பது sphinx.ext.autosummary.generate க்கு ஒரு முன்னணியில் உள்ளது. இது உருவாக்குகிறது \n இல் உள்ள தன்னியக்க வழிமுறைகளிலிருந்து மறுசீரமைப்பு செய்யப்பட்ட கோப்புகள் \n வழங்கப்பட்ட உள்ளீட்டு கோப்புகள். \n\n தன்னியக்க உத்தரவின் வடிவம் ஆவணப்படுத்தப்பட்டுள்ளது \n `` sphinx.ext.autosummary`` பைதான் தொகுதி மற்றும் பயன்படுத்தி படிக்கலாம் :: \n\n pydoc sphinx.ext.autosummary" #: sphinx/ext/autosummary/generate.py:707 msgid "source files to generate rST files for" -msgstr "" +msgstr "RST கோப்புகளை உருவாக்க மூல கோப்புகள்" #: sphinx/ext/autosummary/generate.py:711 msgid "directory to place all output in" -msgstr "" +msgstr "அனைத்து வெளியீட்டையும் வைக்க கோப்பகம்" #: sphinx/ext/autosummary/generate.py:714 #, python-format msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgstr "கோப்புகளுக்கான இயல்புநிலை பின்னொட்டு (இயல்புநிலை: %(இயல்புநிலை) கள்)" #: sphinx/ext/autosummary/generate.py:718 #, python-format msgid "custom template directory (default: %(default)s)" -msgstr "" +msgstr "தனிப்பயன் வார்ப்புரு அடைவு (இயல்புநிலை: %(இயல்புநிலை) கள்)" #: sphinx/ext/autosummary/generate.py:722 #, python-format msgid "document imported members (default: %(default)s)" -msgstr "" +msgstr "ஆவணம் இறக்குமதி செய்யப்பட்ட உறுப்பினர்கள் (இயல்புநிலை: %(இயல்புநிலை) கள்)" #: sphinx/ext/autosummary/generate.py:726 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "உறுப்பினர்களை தொகுதி __all__ பண்புக்கூறில் சரியாக ஆவணப்படுத்தவும். (இயல்புநிலை: %(இயல்புநிலை) கள்)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" -msgstr "" +msgstr "முக்கிய வாதங்கள்" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" -msgstr "" +msgstr "உதாரணமாக" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" -msgstr "" +msgstr "எடுத்துக்காட்டுகள்" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" -msgstr "" +msgstr "குறிப்புகள்" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" -msgstr "" +msgstr "பிற அளவுருக்கள்" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" -msgstr "" +msgstr "பெறுகிறது" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" -msgstr "" +msgstr "குறிப்புகள்" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" -msgstr "" +msgstr "எச்சரிக்கைகள்" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" -msgstr "" +msgstr "மகசூல்" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "" +msgstr "தவறான மதிப்பு தொகுப்பு (நிறைவு பிரேஸைக் காணவில்லை): %கள்" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "" +msgstr "தவறான மதிப்பு தொகுப்பு (தொடக்க பிரேஸைக் காணவில்லை): %கள்" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" -msgstr "" +msgstr "தவறாக சரம் லிட்டரல் (நிறைவு மேற்கோளைக் காணவில்லை): %கள்" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" -msgstr "" +msgstr "தவறான சரம் நேரடி (தொடக்க மேற்கோள்களைக் காணவில்லை" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" -msgstr "" +msgstr "கவனம்" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" -msgstr "" +msgstr "எச்சரிக்கை" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" -msgstr "" +msgstr "ஆபத்து" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" -msgstr "" +msgstr "பிழை" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" -msgstr "" +msgstr "குறிப்பு" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" -msgstr "" +msgstr "முக்கியமான" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" -msgstr "" +msgstr "குறிப்பு" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" -msgstr "" +msgstr "மேலும் காண்க" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" -msgstr "" +msgstr "உதவிக்குறிப்பு" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" -msgstr "" +msgstr "எச்சரிக்கை" #: sphinx/templates/latex/longtable.tex_t:52 #: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" -msgstr "" +msgstr "முந்தைய பக்கத்திலிருந்து தொடர்கிறது" #: sphinx/templates/latex/longtable.tex_t:63 #: sphinx/templates/latex/sphinxmessages.sty_t:9 msgid "continues on next page" -msgstr "" +msgstr "அடுத்த பக்கத்தில் தொடர்கிறது" #: sphinx/templates/latex/sphinxmessages.sty_t:10 msgid "Non-alphabetical" -msgstr "" +msgstr "மக்கள்தொகை அல்லாத" #: sphinx/templates/latex/sphinxmessages.sty_t:12 msgid "Numbers" -msgstr "" +msgstr "எண்கள்" #: sphinx/templates/latex/sphinxmessages.sty_t:13 msgid "page" -msgstr "" +msgstr "பக்கம்" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "உள்ளடக்க அட்டவணை" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" -msgstr "" +msgstr "தேடல்" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/searchbox.html:16 #: sphinx/themes/basic/searchfield.html:18 msgid "Go" -msgstr "" +msgstr "போ" #: sphinx/themes/agogo/layout.html:90 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" -msgstr "" +msgstr "மூலத்தைக் காட்டு" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" -msgstr "" +msgstr "கண்ணோட்டம்" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "வரவேற்பு! இது" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "" +msgstr "ஆவணங்கள்" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "" +msgstr "குறியீடுகள் மற்றும் அட்டவணைகள்:" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "" +msgstr "உள்ளடக்கங்களின் முழுமையான அட்டவணை" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "" +msgstr "அனைத்து பிரிவுகளையும் துணைப்பிரிவுகளையும் பட்டியலிடுகிறது" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "" +msgstr "இந்த ஆவணத்தைத் தேடுங்கள்" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" -msgstr "" +msgstr "உலகளாவிய தொகுதி அட்டவணை" #: sphinx/themes/basic/defindex.html:29 msgid "quick access to all modules" -msgstr "" +msgstr "அனைத்து தொகுதிகளுக்கும் விரைவான அணுகல்" #: sphinx/themes/basic/defindex.html:31 msgid "all functions, classes, terms" -msgstr "" +msgstr "அனைத்து செயல்பாடுகள், வகுப்புகள், விதிமுறைகள்" #: sphinx/themes/basic/genindex-single.html:33 #, python-format msgid "Index – %(key)s" -msgstr "" +msgstr "குறியீட்டு & ndash; %(விசைகள்" #: sphinx/themes/basic/genindex-single.html:61 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:73 msgid "Full index on one page" -msgstr "" +msgstr "ஒரு பக்கத்தில் முழு குறியீடு" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "" +msgstr "கடிதம் மூலம் குறியீட்டு பக்கங்கள்" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" -msgstr "" +msgstr "மிகப்பெரியதாக இருக்க முடியும்" #: sphinx/themes/basic/layout.html:26 msgid "Navigation" -msgstr "" +msgstr "வழிசெலுத்தல்" #: sphinx/themes/basic/layout.html:126 #, python-format msgid "Search within %(docstitle)s" -msgstr "" +msgstr "%(டாக்ஸ்டிடில்) கள் தேடுங்கள்" #: sphinx/themes/basic/layout.html:135 msgid "About these documents" -msgstr "" +msgstr "இந்த ஆவணங்களைப் பற்றி" #: sphinx/themes/basic/layout.html:144 sphinx/themes/basic/layout.html:188 #: sphinx/themes/basic/layout.html:190 msgid "Copyright" -msgstr "" +msgstr "பதிப்புரிமை" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "" +msgstr "© %(பதிப்புரிமை_பிரெஃபிக்ஸ்) எஸ் %(பதிப்புரிமை) கள்." #: sphinx/themes/basic/layout.html:212 #, python-format msgid "Last updated on %(last_updated)s." -msgstr "" +msgstr "கடைசியாக %(last_updated) s இல் புதுப்பிக்கப்பட்டது." #: sphinx/themes/basic/layout.html:215 #, python-format msgid "" "Created using
Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr " ஸ்பின்க்ஸ் %(ஸ்பின்க்ஸ் பதிப்புகள்." #: sphinx/themes/basic/opensearch.xml:4 #, python-format msgid "Search %(docstitle)s" -msgstr "" +msgstr "தேடல் %(டாக்ஸ்டிடில்) கள்" #: sphinx/themes/basic/relations.html:12 msgid "Previous topic" -msgstr "" +msgstr "முந்தைய தலைப்பு" #: sphinx/themes/basic/relations.html:14 msgid "previous chapter" -msgstr "" +msgstr "முந்தைய அத்தியாயம்" #: sphinx/themes/basic/relations.html:19 msgid "Next topic" -msgstr "" +msgstr "அடுத்த தலைப்பு" #: sphinx/themes/basic/relations.html:21 msgid "next chapter" -msgstr "" +msgstr "அடுத்த அத்தியாயம்" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" +msgstr "தேடலை இயக்க ஜாவாஸ்கிரிப்டை செயல்படுத்தவும் \n செயல்பாடு." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." -msgstr "" +msgstr "பல சொற்களைத் தேடுவது காண்பிக்கும் போட்டிகளை மட்டுமே காட்டுகிறது \n அனைத்து வார்த்தைகளும்." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" -msgstr "" - -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" +msgstr "தேடல்" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" -msgstr "" +msgstr "விரைவு தேடல்" #: sphinx/themes/basic/sourcelink.html:12 msgid "This Page" -msgstr "" +msgstr "இந்த பக்கம்" #: sphinx/themes/basic/changes/frameset.html:5 #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "" +msgstr "பதிப்பு %(பதிப்பு) S — %(டாக்ஸ்டிடில்) கள்" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "" +msgstr "%(கோப்பு பெயர்) எஸ் — %(டாக்ஸ்டிடில்) கள்" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format msgid "Automatically generated list of changes in version %(version)s" -msgstr "" +msgstr "பதிப்பு %(பதிப்பு) S இல் மாற்றங்களின் பட்டியல் தானாக உருவாக்கப்படுகிறது" #: sphinx/themes/basic/changes/versionchanges.html:18 msgid "Library changes" -msgstr "" +msgstr "நூலக மாற்றங்கள்" #: sphinx/themes/basic/changes/versionchanges.html:23 msgid "C API changes" -msgstr "" +msgstr "சி ஏபிஐ மாற்றங்கள்" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" -msgstr "" +msgstr "பிற மாற்றங்கள்" + +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "தேடல் முடிவுகள்" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "உங்கள் தேடல் எந்த ஆவணங்களுக்கும் பொருந்தவில்லை. எல்லா சொற்களும் சரியாக உச்சரிக்கப்பட்டுள்ளன என்பதையும், நீங்கள் போதுமான வகைகளைத் தேர்ந்தெடுத்துள்ளீர்கள் என்பதையும் உறுதிப்படுத்தவும்." #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "தேடல் முடிந்தது, தேடல் வினவலுடன் பொருந்தக்கூடிய $ {resultCount} பக்கம் (கள்) கிடைத்தது." -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" -msgstr "" +msgstr "தேடி" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." -msgstr "" +msgstr "தேடலைத் தயாரித்தல் ..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " -msgstr "" +msgstr ", இல்" #: sphinx/themes/basic/static/sphinx_highlight.js:112 msgid "Hide Search Matches" -msgstr "" +msgstr "தேடல் போட்டிகளை மறைக்கவும்" #: sphinx/themes/classic/layout.html:20 #: sphinx/themes/classic/static/sidebar.js_t:57 msgid "Collapse sidebar" -msgstr "" +msgstr "பக்கப்பட்டி சரிவு" #: sphinx/themes/classic/static/sidebar.js_t:48 msgid "Expand sidebar" -msgstr "" +msgstr "பக்கப்பட்டியை விரிவாக்குங்கள்" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "" +msgstr "உள்ளடக்கங்கள்" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" -msgstr "" +msgstr "மொழிபெயர்ப்பு முன்னேற்றத்தை கணக்கிட முடியவில்லை!" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" -msgstr "" +msgstr "மொழிபெயர்க்கப்பட்ட கூறுகள் இல்லை!" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" -msgstr "" +msgstr "4 நெடுவரிசை அடிப்படையிலான குறியீடு காணப்பட்டது. இது நீங்கள் பயன்படுத்தும் நீட்டிப்புகளின் பிழையாக இருக்கலாம்: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "அடிக்குறிப்பு [%கள்] குறிப்பிடப்படவில்லை." -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "அடிக்குறிப்பு [#] குறிப்பிடப்படவில்லை." -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற அடிக்குறிப்பு குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" #: sphinx/transforms/i18n.py:245 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" -msgstr "" +msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற மேற்கோள் குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "மொழிபெயர்க்கப்பட்ட செய்தியில் சீரற்ற கால குறிப்புகள். அசல்: {0}, மொழிபெயர்க்கப்பட்டுள்ளது: {1}" #: sphinx/transforms/post_transforms/__init__.py:116 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "குறுக்கு குறிப்புக்கான குறைவடையும் உரையை தீர்மானிக்க முடியவில்லை. ஒரு பிழையாக இருக்கலாம்." #: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" -msgstr "" +msgstr "'எந்த' குறுக்கு-குறிப்பு %r க்கு ஒன்றுக்கு மேற்பட்ட இலக்குகள் காணப்படுகின்றன: %s ஆக இருக்கலாம்" #: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "" +msgstr "%கள்: %S குறிப்பு இலக்கு காணப்படவில்லை: %s" #: sphinx/transforms/post_transforms/__init__.py:212 #, python-format msgid "%r reference target not found: %s" -msgstr "" +msgstr "%r குறிப்பு இலக்கு காணப்படவில்லை: %கள்" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "" +msgstr "தொலை படத்தைப் பெற முடியவில்லை: %கள் [ %d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "" +msgstr "தொலை படத்தைப் பெற முடியவில்லை: %கள் [ %கள்]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." -msgstr "" +msgstr "அறியப்படாத பட வடிவம்: %கள் ..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" +msgstr "தீர்மானிக்க முடியாத மூல எழுத்துக்கள், \"?\"" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" -msgstr "" +msgstr "தவிர்க்கப்பட்டது" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" -msgstr "" +msgstr "தோல்வி" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "%எஸ் டொமைனில் சிக்கல்: புலம் ' %கள்' பாத்திரத்தைப் பயன்படுத்த வேண்டும், ஆனால் அந்த பங்கு டொமைனில் இல்லை." -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "" +msgstr "அறியப்படாத உத்தரவு அல்லது பங்கு பெயர்: %s: %s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" -msgstr "" +msgstr "அறியப்படாத முனை வகை: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "வாசிப்பு பிழை: %கள், %கள்" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "எழுதும் பிழை: %கள், %கள்" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" -msgstr "" +msgstr "locale_dir %s இல்லை" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "" +msgstr "தவறான தேதி வடிவம். நீங்கள் நேரடியாக வெளியிட விரும்பினால் ஒற்றை மேற்கோள் மூலம் சரத்தை மேற்கோள் காட்டுங்கள்: %கள்" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -msgstr "" +msgstr "குறியீட்டு உள்ளீடுகளுக்கு (நுழைவு %r இலிருந்து) %R நீக்கப்படுகிறது. அதற்கு பதிலாக 'ஜோடி: %கள்' ஐப் பயன்படுத்தவும்." -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "" +msgstr "டோக்ட்ரீ இல்லாத கோப்பு %r க்கு ரெஃப் உள்ளது" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" -msgstr "" +msgstr "விதிவிலக்கு மட்டுமே வழிநடத்தும் வெளிப்பாட்டை மட்டுமே மதிப்பிடுகிறது: %கள்" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" -msgstr "" +msgstr "இயல்புநிலை பங்கு %கள் காணப்படவில்லை" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" -msgstr "" +msgstr "இந்த வரையறைக்கு இணைப்பு" #: sphinx/writers/html5.py:397 #, python-format msgid "numfig_format is not defined for %s" -msgstr "" +msgstr "Numfig_format %s க்கு வரையறுக்கப்படவில்லை" #: sphinx/writers/html5.py:407 #, python-format msgid "Any IDs not assigned for %s node" -msgstr "" +msgstr "%ஒரு முனைக்கு ஒதுக்கப்படவில்லை" #: sphinx/writers/html5.py:462 msgid "Link to this term" -msgstr "" +msgstr "இந்த காலத்திற்கான இணைப்பு" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" -msgstr "" +msgstr "இந்த தலைப்புக்கான இணைப்பு" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" -msgstr "" +msgstr "இந்த அட்டவணையுடன் இணைப்பு" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" -msgstr "" +msgstr "இந்த குறியீட்டிற்கான இணைப்பு" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" -msgstr "" +msgstr "இந்த படத்துடன் இணைப்பு" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" -msgstr "" +msgstr "இந்த டோக்ட்ரீயுடன் இணைக்கவும்" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "" +msgstr "பட அளவைப் பெற முடியவில்லை. : அளவு: விருப்பம் புறக்கணிக்கப்படுகிறது." #: sphinx/writers/latex.py:335 #, python-format msgid "unknown %r toplevel_sectioning for class %r" -msgstr "" +msgstr "அறியப்படாத %r toplevel_sectioning class %r" #: sphinx/writers/latex.py:386 msgid "too large :maxdepth:, ignored." -msgstr "" +msgstr "மிகப் பெரியது: மேக்ஸ்டெப்ட் :, புறக்கணிக்கப்பட்டது." #: sphinx/writers/latex.py:625 msgid "document title is not a single Text node" -msgstr "" +msgstr "ஆவண தலைப்பு ஒரு உரை முனை அல்ல" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" -msgstr "" +msgstr "பிரிவு, தலைப்பு, அட்டவணை, அறிவுரை அல்லது பக்கப்பட்டியில் இல்லாத தலைப்பு முனை" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" -msgstr "" +msgstr "அடிக்குறிப்புகள்" #: sphinx/writers/latex.py:1028 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." -msgstr "" +msgstr "அட்டவணை மற்றும்: அகலங்கள்: விருப்பம் வழங்கப்படுகின்றன. : அகலம்: புறக்கணிக்கப்படுகிறது." #: sphinx/writers/latex.py:1388 #, python-format msgid "dimension unit %s is invalid. Ignored." -msgstr "" +msgstr "பரிமாண அலகு %s தவறானது. புறக்கணிக்கப்பட்டது." #: sphinx/writers/latex.py:1722 #, python-format msgid "unknown index entry type %s found" -msgstr "" +msgstr "அறியப்படாத குறியீட்டு நுழைவு வகை %கள் காணப்படுகின்றன" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" -msgstr "" +msgstr "[படங்கள்]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" -msgstr "" +msgstr "[படம்]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." -msgstr "" +msgstr "தலைப்பு ஒரு உருவத்திற்குள் இல்லை." -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" -msgstr "" +msgstr "செயல்படுத்தப்படாத முனை வகை: %r" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index add2495d93d4e9b7951425e7c62a650b0626c02d..8dbea5729173c05182d72667e79418e43c124a64 100644 GIT binary patch delta 30 lcmaFK{E~S>Gp~uRfr+l6iGq=_m67?z2_cNECVB>33;>OI2d@AC delta 30 lcmaFK{E~S>Gq16(frYN2xq_jIm8r$X2_cNEMtX)^3;>P`2e<$L diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 11bee36c8f3..67baf7961e3 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://app.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 34dfe7fa4a940b286fdf0a0907165a6c07c1b498..168c89dfe05a23cb73540ae7d69f921d3c25f97b 100644 GIT binary patch delta 9204 zcmYM(d3;Y-{>Skf5lLiEWFd(}h(s(|B(m5=N>Giah?ueO)V?&7FEv`VrDQ^>ttc5J zhA&e)t)ihttG3oUHPY&)HH=i3-|Ow%$K&UZKF{ZV?>)=se9p}`>B&Q`zn8l@ZU)vY zwfL7nTnq?ig!X<8UwfV1ve%<%Wsa7Sk{tr(jpy zf$j0X7=x*CmgQ+#4y!K>4=xNw`m)BLCh`_WVL7VfPcaBDqUKnIURZ5kcZ;{I5aPP% zk4fl@9Wfg7P|r<5JvSdc8Q&_lZ&;1_d~guek#7?o##mH5(smANfKm*_tr&(!(HpOz zCVCeS;1g_#dlJmR_t2gA7j$EM>sK1dXf-vapgJCgf%qyWVKIi|aa@JhaR^RrW?8{_ z1zX_{=!uP*8(W|0dBI#{e#OhfL+`gjMmS5^!2KnL_8%*6)S7c;O3wPkxy zE4qrB$Zbr;#~6)G6V3BIP?;;ldN?+b{A-V2=YnRo6*co+7>Nf^slS3MnjcYn7(hB| zVMDBq38>7Z+4jOg#4n>Com~|I^>{O$5H*mF)l!OT)y5N?}{T4@&y!XHwv6za{2XCWNzSH&$ z_9OlVHSDScv7Qm3xp^rP>!c09FWwkg05}LtNO}JU;=I>AC2k z^S_KnFc(};Yx%YN*Hw{SGZv@t7Rg1N-UP*v{9>rN|gXFC8xiRaj^#3JGfRHoxO zd#ar_7|i%qcN$vRU{tCmqf+I-KrFW7O{k*UgN^Vqs>7$K=lt56QxSpcuOVtdsi@4f zN2R`t9p|GXiVOW|XrNiBW3>#GvQpFo+fg(A7lz|WRPo(G4e%Xmz{jZ5;@-g&wLdl` zjzjg6kIdB?h#GHw2lB5K?dF1x(IwPOt56;Ngu4C&wbI%hIqO&-TVgII;%tn^a@1+K zjCttB{!PR_7=@>?0ajrQdS*LJDw|Ql(Ol?-!*Mbe;#KU4EjdFk;cM6(uV5@T%rPD3 zVt?Y%*bq-*9DZxZ0neG5Nkd(CpeC|S4eG+GL{5(7-o>Q0Jq{zz#lBd9)3H`pvqiJf zmH2O16BlAME=6Ug0z>fMs4c5TtvHyyevXo7kV?86lN8Y3~} zc~dN@sEKqzj=WWX^>77xVmW%_``8RWLiO`As+b$GkIHZ+>bOtB44wZsXed?3Q5{{u zSiFOpfcp#PIL6whp;nfIjjTBw@D2>Y6PS!&qB`_0Fh!G&RIT+qYVZ4C0M15DtQfW8 z4Yr3-wR8=Ku-BuRvw$v>iV{ z^%Kk6NSW=7;aGsm*i_Vnim*01HqcNiwxb3ec0J`34Vp4cn2NY`)V4k(RaAn!)~^{ zYzxqx&j(@}jzsP4I;@Fhs0o&14j#l#XpJyinT@f8i%|>RjScba2=cF#|HK8&JYuBz zwwi$&U^eQ;g{UguiN1Krj_;z1)@PKNNMp<(Zi>-347KtFNU>REsQXW#7Jhvc`PVV| znF}81Hrl)>d{HxwLKRgGYT$g-gomJ3T#WI!7Paz|_I0l@W~;(bwUv$9vT3M=mSb(K zbkI;0e}TbRg__Xsb{sI)RDB%kzI1Gi-B5ct3AF`pqE5jw)XGkv7H}17;U7r3SZ?FY z7K}z+cg&~ZMPm`h;Y!THqZp0V=#KSXHdPygnn-(0z!y;ynvH#N3%0}GP%Cad-ehnJ zdJ@mWX1Ex6-eK*hp=0zls%q;@Ff&iVRm26h4^XLGIMH|zm9g)UcaK$Ll1c4AHH6&(VPpTPFHkS0$EX_dnPQ4E1QlmtAZBA8 z_CdWrwqYioLY*#as(BBzL1lCV2I~Ber=hBxXS)WqGAHUqQHdJh9%|34ahD6P-)WZh zKjIIj^QRc%12g#cMBKQD&+$6e!6h?IvA&Dlh%2x&R-@x38trCTRu3#e9hcjvmASrZ ziq9LhXA!8C<)Sh)3f*uKYQk@!2Hc9OsY9sDokpGeo3>BThd6LH`H!X%J=Bsep$_t&PQz!e zIrll}P22|qa40G>(`-LPb>KJ843vO61#MB88--3>jBLBr{xy3mF`2j$m5HaQ;}`6h zZ)O;QN=YiJh&rKCUV@o;92?=UScp-7GZUSOk;HFceS8nw;YXN+t_#dSsi=WlV>b52 zhUi#LLn%9gL3jbR^1G;W{TMZ|$k)w)O)-Wz1EaA&w!l|09Cx6q`!uSb^B9MBFbX~2 zu)pr3zs~_csH&ciD$3QU484c0cmTEHBd7^o!xR@z54sZv zEipwJj&8&wQT@G)D&qNAsPn(k{@^LzB@S3>it#b(M)zeVb&aqAacAVnTO&|gaRYUq zRcr=~L~p{;n2*yj8qXkITHj%3EP9KqXm5|w&^i4CwbHNA4}Zc~{1cmF>~gcReAEE_ zF$+gw0B%NQW*_#(1E|dStuPr4L7lc}3?fqnE7*SxJg&r~c0MXzg_>9eYEKWN2E2l) zco%zM-M`zJK%J5sI2=PuIl?#_8{rqI;;Y6cSa+rAH+v=dr)>@3KROXaAZ<`c_qB^RN+JY9S z^O=QVH~^K}8K{nCp(e7_j@P0VP=V_BW7Nby$56b1dhQWEtEtuYA0isj&<8y*9tWUi z_y#89JE-@=r>Kr^qX*tct?VHNqstmoWTDuCI0F-KB?H!Z4 z!>ASCMD1CPwdMsBhpO_PI2I?_-oQfQ+;v>TEjR>2)|+B2LT$-5?1Po4t%=@XR{k6& zFupaOMpr&qjhf-VQ4{dqX#etwS;P}iE8mWPK_~V?|99DU9D>ToEp)>l?D!!@5xZ>S zmlbS)VK@q-95m+9(17n^Z#;z)F=Dgna4G5-y@T3Y*6$>#FFJeRV*=bgqj7^BU zV|$#2p12SF@fd1B7tjOmV^@5Lov}?hlfikY;yvrIFEp+&H%`O?J~)6~FmRXoT3v|Q z#CxyiKFqWZglnsAfdW z9X8ryR@51zi3gxgg9E$aK@3DUr+JTrVJ+eWREm=^8uL&!Gzn|tR&1s7znex77rwz} z_#3L4o9s0;(Gj)Bb5Qq{U_0D~n)p4`Kmq&Au}ea|fLfsj8ji};MAUt6qE=ppQ9A$U zX$fkdwet@lrL*F+O?TJami!lukqZafFW?IJM=kbin9kkJI@%-_0_1; zvJczh@2G)VA2&Y>rlK41CJe(ed>%hI?l48<_krm!3w7QHqK?~q)BvY38o$P-So1@E zfy5-#%9f#4v>rR+m#9ocoG`~T7h{ND#VFi>_3@a4hHkuxN~PCFX22lyCr(7YFgl=) z)gsi3Wx4GdRF!W=t+)bpN~%!(Jw;8>^`x0_5Dq4ugagrWkwzkomZ!{*%b}>$FTf7C z3nTFXzJR``&BO*^W8w*zj4RO>KSrI3D;SNwADh%CqB4_)u{Z-6$6>9bp#e@~UHlJf zkN(6^468INNkXk81D{nt`Vdb;otF8i8d-_T$R*VK;Woa6US~{^4niHz$_Sh3Aqf+<*dSDgmxd*7dcRy#gCLE)QJK=B~ik+|$ zwP5e_D%{jNhRq6!|$>!&KCS zOK~V3!gP$f$o}gE)Ayn&zQtIJxE!^zz1RhhpeEq2Pr_8=dD;k~lWs`T5ul9woh| zMLMrfeb=R=Z2D5?z!@7|d{Ubyr8ZAajZSHqm6GoCF6!#yn%W}C*>~pJdL^EvU7fQ^ z2LzW4+L7uUxTB~>iDPMa$;b*H=a!1L;m+VQPhFfvpA@^43_3T&S?~N|PiMq6{~9GP Nf3?!t`fv_((VM`zhN!U?#kR1fV569u0xHrN5l|MDpe&+nqM){-qJ69)Qd_MH_WR4Z)c5Vv_x0)1&pCHF%m4pBH;MkT zBl7Sok>NkZ*M7+2pZ>Kht2Ne+SMRrfzG`n-U(@{>heue}2OTV{lzw6-%kttnjK+x0 zmQ@F1ustbBlezIQYM{$F80&N~{Sl6{ zQ4@r)87{--_&DBxyHN|R#=ZDHcE`0{&BSkDUHYf74)a?VXk_BYj`68x;9;n2%)$)x zV=LT@>v12>!|XJ|jk~cIp1}H8JKfj_6^Z6p4?E)k%)l_wvivmU25gJ3p>p*x>IJ)- z$#DuM((jFZFb9>gwWuBKK`rD}?1AUd#)hn3HIj;oTt94yV={=pa-7cvO|%TP@&~XD zZbYSGH>zmfM&_EI{hiA`*X25-ixvL1S&FBI0N^fBGLFp6Z#g& zL9r6CDUlnGP3XIC();9pF%5-&6)M*oQ6YQ+wU9li;yHvv@JsYy8lO2uVm*$+V@Ou4 zCY&urVw9r?o6*15aSN8y-;0fz-|9Zl6w?UQ#8Xi_^P+Ne2P$+cF&-aw`a4iXwjVp- zMN}%I2ATI-qE1O?)OhKr4GlyU~)R$?N)fYgz7 z7CCuV{74hp(U?a+8>iu3EWx(}fQrmsR0_UErL6X7v*EB!gMzk( zVh%3B`gj5B;%8U~zd{|OtEk+zW7{g$4AcT{#-lh6HBPg!Yzh~k?*EJpF>;(4HwNj4 zt!B=J_E?Vxy5cJAffTg$DyE_0o(1XH23@F{38NOY7Wsr&f54Xb5o#kp;0;)7g4sX} zYMh&}iO#>DhC+Q0YDfE!kC$~C6|#m@js{9XS$~ zZ;c&rD7L^tY{UH4-88h~&DaiKK?>da09ABtCYcBNp-o)yxIdf`3M(s^?_0 z;~TLt{gJ3t&O&W84}0OG7`~Cl85*N7hLTo42m9eeNS#?HQK4-y#j>bNYcgixBaUxl zBl;0j%@;5h6}jQq8fQ8Ea^#>{52D^bJC*n=6m=XI>eimxSA#9B6FdnyI zGkgV;@eJzJ{EV^KZ@Njv7}RN)iJE6FD$ zh<4ycy*M8gk;T{?H)2bC0n_mW>b;+_D`w6z{aaCyTI=**L5&l>LPMdAxz&6a+M^~M zh+5DvY=HAokqDtCUWqO652&KukBa0+$ceSSz!3JFZFc@FDs}r&--DA#k%z7KXlQ~K zbIgi5po(!Q>J+R-?eHDUz%NmuZ#CBxV-|A6t;ML2A4Ns#G%6yWpeBxUnMicNX!<#r zs`Fn!qdOPYIX8}AXZq(*6JA4wuG>75>*<(EeM@I15qd ze;ewUp1_))|7U1u2VYYD#kmp zH*UuyyolOJ?R>M~Gz_=l!YJoL0qVh}SO=d*Rr_kd7Pts?YJOKh{D;%n&4nTO3y#1+g{JscpmzK`w#Or=(0_#rc?*v@mOU|< zel8Bf`%n{~LcRB)bKjb8K2#~F=ljej|Egve7qr5~*ayRC;~u;P&!ZyKrO4!X9O}J7 zoPc+sB6JFMnm)&R_#?(*q}Oby399(|VIv$Frjbfx8s32SpjNg96`7Zv>sGPJX*4Qy zeNefbkBY<-*Z>cps{JVHL-ZkPL06rAl+T=w)~M&gsWdv#7>LSsJ}MG-qCO-`Q9Ij% z9q|Mz_kTm`)%p>YqS=0PeGxXKAI8qO3j1Ld+ISi3VoXU*ar5(^hE~!8yWj}af=Y23 zZo~ojEo#RZ3rq+Lu|EAWOvNRr_jh0hzK<&I`lV*!opC+=agLWTQ|JGVfC=eNRLCwO zA4ThXRA{qrg1OBh%$Ugd%oa1Fa*-Mh>m3cXPg*@k2AFlxfMyUll? z6Dm@JQ3Gb9B36uz@ORh}*WurBC-%mtmYVOvM`0Q_aN#n>;ZLa0MBihaff`^dYNFRs zHSsPcq4hhC7PLp|)p`$WQn}0&wF?!A3XH-Xs0F@=ib(h^8Y-p>sE~JEZi;9+cA&o& zXW(wsLgQDMW7Q6on*KNdXQ7VWBN&Bmp(Z|qL-A{DkD2$HjZDGD%x@La(9UniPIy0R zWxG%l9zyN(B-;2lOvffG&2buvb?MJRjZ=V~u^ijs7F>m|VJwcLqm9nS+B*NMXlMry z;z)c4hhX#jOs;35c2t7(aUqV!yHKe)i7L9kqH3eoYV$p4hMDxoIsGu|{avUH9mI6z zw?1)h#NBUl*9seQJrfC$)gL2qBI*M&1+}0Bm=(e4K}F!%2TYMxp*}pnqH3YegQkdE zp;Flgb-e<^pV8P(BNp#pV;5f$d&pf*CA z{yb!F)>0gXaqCQKr=lX3w~qL0r?+t-2A5+;T#sqEAGNc;qE`Gj)I{|kGCx$BVha6< z7>Bo^BDET);2Kn z{fMzSHlp7iwc{*QbXh8lP?YT?gdGu(xG?*z8SKO@I9Z2j!q=x_y1E??GQ>cOWU_E>twX@@xfalT1Z!jHWA2(mhf!LP*d{pS~#T=}{Wjg=Sn@s4| zp}tTrp}u?sJMjrKZWvVyTTrR_0ri1u z`v(>nrg1Y3eRvk2R`@b%0iR)itpB8`_7SL^-;J|y6;8yz;O*G&DHD<1Scm>$r+*yV z(Lawj<3CX;9rQHu*Nq$+9k3jy;Nw_=-=RY6-fC(jfJ(t)yczGo)_5G1g$4^m3K7PBYiA$&=zp|b9Ye&Cup{D4bG3PxVb-g9-!uF`0o<|+OuFsm|HW#(< zhf&3M5S!{b9FAA874~}0OgIT^Y70}j9(a!U52CS|3mV`e-h@A)imJ~J^Dm*sqx$z_ z1AG#baVG}wee8^5pEtih1X0KDNz{9L9p6C}^(E|r&B8m)4u)VyE)<}ub+vQ-IaKkS z!bO<;N3-)S*q;6esD=NEDcGXYEO;o^r@s_qaW(3>$5D~pgCjBg8jWEz8oXfs?4E$C z>WxnSJJf>%s`!r*xEx2|$2bj>Uo=18m*61!)u`gCL*BBmEvm*QqEfQ}6L1AGUf6n^ z#y~E7kJ?f1m&~!7i3-u(s3O~e3h^=2fLBpFir;O{eJb{&KMqIZ3XI1y7>A!@6#jsU z@ULj={I}g>ifSM#w?XWMVQh>qp^D`gHpA~xH4?MeC- zjvXBjTcZWy^K2Nk%!E` zj7mivGanAY4LATlKow`pYUem(EBXbf)3Ox%<8f5P>mN2hBZh=&s5nZnIhNr#d;nEM zA7KZq_l7wgX*iVrMAQTip^cT;6;I=>cnxE4)|+NSUK~t+8!8fCqK;>{*%6c5(b$d) z#n={CqaJ(?>*9ITgcngClwWWZHacpK)pV>!e~x1z>NG7t?f7=oDcOY@?6Z6&*P>h+?YatIS#@~Y=c)(&&9rFCLDwl=$E4wd=xw31){CB6J<1z$oEXO+dFe+r5u_Jzh)3Dy#W&v|i6R*S;xD9pxbyO-_zGI55J8H*c zFa{@MD&}G|^IH$n(6M?PRZNwr&|SeU_!H_BbUJCO`8L!!UhQ}Y72z^~nG!+lh&pt=|)oAjbdGM@b)ca;ZeQ+-KC!kjRM{JMh zFcE*mTx@;b{9&;KyVKu;y8jhMVWSJ?bR^&i`fX7Q$`8{}$nQl}^pybqP@&ru7F{LoZ?3Qp8>n2yI$@BfG`F)QjL(@1o@2@|+64Yh+} zY=#eD8{GO)RfG03o5n1(JwCh4T^jKCeRjt{#k{_~o7#a;ZlRs)_vL#E>@t@(kimKzg_B{7xH-X((O?NK7Xk@&-UcoX)fCn zxc;m=uj<9IGiyz^OI)Qcuh;Fh7kYw)_ISIb)Sv4P1Q=#vp}W*=m-qt#&pfZ&POh27 zIk>g!N4`Ji)XQPi|4UUF^?ur`ii$r9Rs=&mRiftjI3*FtM+It>m)~AB(Em>%J=@ z+YT1Gi`}-*Rm`?JmfHEumuDwmf4t^yy5co3#q#<8>(i;knaz2Ej4-d9L8^KeOpX|n z?`OS*ZadeNTgV-^ugp{G_Z7Q+EQl%c{JFtWx7!KwZ#$YWCHs~s*~3On>Xz<25=g1I zr!Z%{i-4LSn)HQAT|s45S+bLLExn{XMM?4cb6r}@Z-WNdp6v?QlP64>G;}zFr&N7V zxTRiN&EDB{p5Gntbq?Bvt}?fs#3`kk zMYw80oof4i-f}x_nC&mo0s|F&1NSGZ9MYzx+C^@6iCy4VD%gzAE-+Knq>GDzs>6XN zBBHyeW%NnQ>}_ZE=-0DPRWLL%A~GvIv+7{kqb-|sr0NdsD?PNY_|QIIo|_T8c@;Tp zMmHF8=%sQ(G0#(4G4ZkHb<6!lHMRZ3nmGv*%iTUt9@F`~p~IVkq0(Ykk?lFOl>;)* z?e&y;J%k`o?((`yt1ErBPJ%n&NwFe#T>>>yz5ahhAFD>dN10-g(O7 zBXQ-fQZN6P>ncjIt`Ao1vMW~J8(VR7dvv#=kk{+-{kEs;&xCSAc5<1k)U4X&yMA8Y z-9DhzO}>90m?BS!C)EzJ8QWbH@D$lau5zENh{aP7MMXp;&t->LgjGn)h_7Ao{NgSZ zj~#AO(dv!nRSOP37EwqMxd@A%oEP$jd@i3IbhAccW+$6b|JPaif1Xd(IV2#i{F?E6 zM52tZiaOPmRnc!g7}4&~OFr`Ebr*TvK4rBu=qlz@cl}URR31ra{~tU5ujlH~Be~Pc zT_vQHBUxQZS(rKqFd6^*AIGX@Q+c84O(C}A{g1K#eXMG-Pw=WMQ>v~V*q4s=4nz7V$6TzpVlQ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 712a9bc1cda..17978bc5a47 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://app.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -41,104 +41,104 @@ msgstr "Kaynak dizin ve hedef dizin aynı olamaz" msgid "Running Sphinx v%s" msgstr "Sphinx s%s çalışıyor" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Bu proje en az Sphinx s%s gerektirir ve bu nedenle bu sürüm ile oluşturulamaz." -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "çıktı dizini yapılıyor" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "%s uzantısı ayarlanırken:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir Python değil. Lütfen tanımını çağrılabilir bir işlev yapmak için değiştirin. Bunun, Sphinx uzantısı gibi davranması için conf.py dosyasına ihtiyacı vardır." -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "bitti" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "yerleşik iletiler için kullanılamaz" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "derin temizlenen ortam yükleniyor" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "başarısız olan: %s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "Seçilen oluşturucu yok, varsayılan kullanılıyor: html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "başarılı oldu" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "sorunlarla tamamlandı" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hata olarak kabul edilen uyarılarla)." -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hatalar olarak kabul edilen uyarılarla)." -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "yapım %s." -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "düğüm sınıfı %r zaten kayıtlı, ziyaretçileri geçersiz kılınacaktır" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,70 +159,75 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config dizini bir conf.py dosyası içermiyor (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "sözlük yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor (tek tek öğeleri ayarlamak için %r kullanın)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "geçersiz sayı %r; yapılandırma değeri %r için; yoksayılıyor" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "desteklenmeyen tür ile yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "geçersiz kılmada bilinmeyen yapılandırma değeri %r, yoksayılıyor" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "Böyle bir yapılandırma değeri yok: %s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "Yapılandırma değeri %r zaten mevcut" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Yapılandırma dosyanızda bir sözdizimi hatası var: %s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Yapılandırma dosyası (veya içe aktarılan modüllerden biri) sys.exit() olarak adlandırılır" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,291 +235,328 @@ msgid "" "%s" msgstr "Yapılandırma dosyanızda programlanabilir bir hata var:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "'source_suffix' yapılandırma değeri bir dizgi, dizgiler listesi ya da sözlük bekler. Ama '%r' verilir." -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "Bölüm %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "Listeleme %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` yapılandırma değeri, {candidates} geğerlrinden biri olmak zorundadır, ancak `{current}` değeridir." -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip; beklenen {permitted}." -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip, vassayılanları `{default.__name__}'." -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r bulunamadı, yoksayıldı." -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "Olay %r zaten mevcut" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "Bilinmeyen olay adı: %s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "%s uzantısı needs_extensions ayarları tarafından gereklidir, ancak yüklü değildir." -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "Bu projenin %s uzantısına ve en az %s sürümüne ihtiyacı vardır ve bu nedenle yüklenen sürümle oluşturulamaz (%s)." -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments lexer adı %r bilinmiyor" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Oluşturucu sınıfı %s \"ad\" özniteliğine sahip değil" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Oluşturucu %r zaten mevcut (%s modülünde)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Oluşturucu adı %s kayıtlı veya giriş noktası aracılığıyla kullanılabilir değil" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Oluşturucu adı %s kayıtlı değil" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "etki alanı %s zaten kayıtlı" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "etki alanı %s henüz kayıtlı değil" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r yönergesi zaten %s etki alanına kayıtlı" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r rolü zaten %s etki alanına kayıtlı" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r dizini zaten %s etki alanına kayıtlı" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type zaten kayıtlı" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type zaten kayıtlı" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r zaten kayıtlı" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "%r için source_parser zaten kayıtlı" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "%s için kaynak ayrıştırıcı kayıtlı değil" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "%r için çevirmen zaten mevcut" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() için kwargs bir (visit, depart) tanımlama grubu işlevi olmak zorundadır: %r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r zaten kayıtlı" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "%r uzantısı zaten %s sürümünden bu yana Sphinx ile birleştirildi; bu uzantı yoksayıldı." -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "Özgün özel durumu:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr " %s uzantısı içe aktarılamadı" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "%r uzantısı setup() işlevine sahip değil; bu gerçekten bir Sphinx uzantısı modülü mü?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Bu proje tarafından kullanılan %s uzantısının en az Sphinx s%s sürümüne ihtiyacı var; bu nedenle bu sürümle oluşturulamaz." -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "%r uzantısı, setup() işlevinden desteklenmeyen bir nesne döndürdü; Hiçbir şey veya üstveri sözlüğü döndürmeli" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Geliştirme Önerileri; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "%r temasının \"theme\" ayarı yok" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "%r temasının \"inherit\" ayarı yok" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "%r adında bulunan tema yok, %r tarafından devralındı" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "%s.%s ayarı, aranan tema yapılandırmalarının hiçbirinde meydana gelmiyor" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "desteklenmeyen tema seçeneği %r verildi" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "tema yolundaki %r dosyası geçerli bir zip dosyası değil ya da hiç tema içermiyor" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 +#, python-format +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "%r adında bulunan tema yok (eksik theme.conf?)" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -530,8 +572,8 @@ msgstr "%s oluşturucu için uygun bir resim bulunamadı: %s" msgid "building [mo]: " msgstr "[mo] oluşturuluyor: " -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "çıktı yazılıyor..." @@ -580,7 +622,7 @@ msgstr "komut satırında verilen %d kaynak dosyası" msgid "targets for %d source files that are out of date" msgstr "güncel olmayan %d kaynak dosyası için hedefler" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "[%s] oluşturuluyor:" @@ -589,50 +631,50 @@ msgstr "[%s] oluşturuluyor:" msgid "looking for now-outdated files... " msgstr "şimdi güncel olmayan dosyalar aranıyor..." -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "%d tane bulundu" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "hiç bulunamadı" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "ortam derin temizleniyor" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "tutarlılık denetleniyor" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "hiçbir hedef güncel değil." -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "güncellenen ortam:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s eklendi, %s değiştirildi, %s kaldırıldı" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "kaynaklar okunuyor..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "yazmak için belge adları: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "belgeler hazırlanıyor" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -641,36 +683,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "kopyalanmış ToC girişi bulundu: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "resimler kopyalanıyor..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "resim dosyası %r okunamıyor: bunun yerine kopyalanıyor" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "resim dosyası %r kopyalanamıyor: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "resim dosyası %r yazılamıyor: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "Yastık bulunamadı - resim dosyaları kopyalanıyor" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -678,470 +720,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s için bilinmeyen mime türü, yoksayılıyor" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "%s dosyası yazılıyor..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "Genel bakış dosyası %(outdir)s içinde." -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "%s sürümünde değişiklik yok." -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "özet dosyası yazılıyor..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Yerleşikler" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Modül seviyesi" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "kaynak dosyalar kopyalanıyor..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "değişiklikler günlüğü oluşturma için %r okunamadı" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "Taklit oluşturucu hiçbir dosya oluşturmaz." -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePub dosyası %(outdir)s içinde." -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_language\" (veya \"language\"), EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "yapılandırma değeri \"epub_uid\", EPUB3 için XML NAME olmalıdır" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_title\" (veya \"html_title\"), EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_author\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_contributor\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_description\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_publisher\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_copyright\" (veya \"copyright\"), EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"epub_identifier\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "yapılandırma değeri \"version\", EPUB3 için boş olmamalıdır" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "geçersiz css_file: %r, yoksayıldı" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "İleti katalogları %(outdir)s içinde." -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "%d şablon dosyası için hedefler" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "şablonlar okunuyor..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "ileti katalogları yazılıyor..." -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Yukarıdaki çıktıda veya %(outdir)s/output.txt içinde herhangi bir hata arayın" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "bozuk bağlantı: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "Rehber sayfaları %(outdir)s içinde." -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "hiçbir \"man_pages\" yapılandırma değeri bulunamadı; hiçbir rehber sayfası yazılmayacaktır" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "yazılıyor" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML sayfası %(outdir)s içinde." -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "tek bir belgede toplanıyor" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "ilave dosyalar yazılıyor" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfo dosyaları %(outdir)s içinde." -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\nMakeinfo aracılığıyla bunları çalıştırmak için bu dizinde 'make' komutunu çalıştırın\n(bunu otomatik olarak yapmak için burada 'make info' komutunu kullanın)." -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "hiçbir \"texinfo_documents\" yapılandırma değeri bulunamadı; hiçbir belge yazılmayacaktır" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "%s işleniyor" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "başvurular çözümleniyor..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (şurada: " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "Texinfo destek dosyaları kopyalanıyor..." -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "Makefile dosyası yazılırken hata oldu: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "Metin dosyaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "%s dosyası yazılırken hata oldu: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XML dosyaları %(outdir)s içinde." -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Pseudo-XML dosyaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "oluşturma bilgisi dosyası bozuldu: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML sayfaları %(outdir)s içinde." -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "oluşturma bilgisi dosyasını okuma başarısız: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Genel Dizin" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "dizin" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "sonraki" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "önceki" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "dizinler oluşturuluyor" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "ilave sayfalar yazılıyor" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "indirilebilir dosyalar kopyalanıyor..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "indirilebilir dosya %r kopyalanamıyor: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "sabit dosya %r kopyalanamıyor" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "fazladan dosyalar kopyalanıyor" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "fazladan dosya %r kopyalanamıyor..." -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "oluşturma bilgisi dosyasını yazma başarısız: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "arama dizini yüklenemedi, ancak tüm belgeler oluşturulmayacaktır: dizin tamamlanmamış olacaktır." -#: sphinx/builders/html/__init__.py:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "sayfa %s html_sidebars içinde iki şekille eşleşiyor: %r ve %r" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "%s sayfasını işlerken bir Evrensel kod hatası meydana geldi. Lütfen ASCII olmayan içerik içeren tüm yapılandırma değerlerinin Evrensel kod dizgiler olduğundan emin olun." -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s sayfasını işlerken bir hata oldu.\nSebep: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "nesne envanteri dökümleniyor" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "%s içinde arama dizini dökümleniyor" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "geçersiz js_file: %r, yoksayıldı" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Birçok math_renderers kayıtlı. Ama hiç math_renderer seçilmedi." -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Bilinmeyen math_renderer %r verildi." -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path girişi %r mevcut değil" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path girişi %r, çıktı dizini içine yerleştirildi" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "logo dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon dosyası %r mevcut değil" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s belgelendirmesi" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX dosyaları %(outdir)s içinde." -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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 aracılığıyla bunları çalıştırmak için bu dizinde 'make' komutunu çalıştırın\n(bunu otomatik olarak yapmak için burada 'make latexpdf' komutunu kullanın)." -#: sphinx/builders/latex/__init__.py:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "hiçbir \"latex_documents\" yapılandırma değeri bulunamadı; hiçbir belge yazılmayacaktır" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" yapılandırma değeri bilinmeyen %s belgesine başvurur" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Dizin" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Yayım" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "%r dili için bilinen hiç Babel seçeneği yok" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "TeX destek dosyaları kopyalanıyor" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "TeX destek dosyaları kopyalanıyor..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "ilave dosyalar kopyalanıyor" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "Bilinmeyen yapılandırma anahtarı: latex_elements[%r], yoksayıldı." -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1156,15 +1198,15 @@ msgstr "%r, \"theme\" ayarına sahip değil" msgid "%r doesn't have \"%s\" setting" msgstr "%r, \"%s\" ayarına sahip değil" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1223,8 +1265,8 @@ msgstr "Bir hata raporu adresindek msgid "job number should be a positive number" msgstr "iş numarası pozitif bir sayı olmalıdır" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1256,257 +1298,264 @@ msgid "path to output directory" msgstr "çıktı dizini için yol" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "yeniden oluşturmak için belirli dosyaların listesi. Belirtildiyse yoksayıldı" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "genel seçenekler" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "kullanmak için oluşturucu (varsayılan: html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "tüm dosyaları yaz (varsayılan: sadece yeni ve değiştirilmiş dosyaları yaz)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "kaydedilmiş bir ortam kullanma, her zaman tüm dosyaları oku" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "önbelleklenen ortam ve doctree dosyaları için yol (varsayılan: OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "mümkünse N işlem ile paralel olarak oluştur (özel değer \"auto\" N miktarını cpu-count değerine ayarlayacak)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "yapılandırma dosyasının (conf.py) bulunduğu yol (varsayılan: SOURCEDIR ile aynı)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "hiç yapılandırma dosyası kullanmadan, sadece -D seçenekleri" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "yapılandırma dosyasındaki bir ayarı geçersiz kıl" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "HTML şablonlarına bir değer geçir" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "etiketi tanımla: \"sadece\" TAG'li blokları dahil et" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "nit-picky kipi, tüm eksik kaynaklar hakkında uyar" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "konsol çıktısı seçenekleri" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "ayrıntı seviyesini artır (tekrarlanabilir)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "stdout üzerinde çıktı yok, stderr üzerinde sadece uyarılar" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "hiç çıktı yok, hatta uyarılarda bile" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "renkli çıktı yayımı yap (varsayılan: otomatik algıla)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "renkli çıktı yayımı yapma (varsayılan: otomatik algıla)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "verilen dosyaya uyarıları (ve hataları) yaz" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "uyarıları hatalara dönüştür" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "-W ile, uyarıları alırken devam et" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "özel durumda tam geri izleme göster" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "özel durumda Pdb çalıştır" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "-a seçeneği ve dosya adları birleştirilemiyor" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "uyarı dosyası %r açılamıyor: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D seçeneği bağımsız değişkeni ad=değer biçiminde olmak zorundadır" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A seçeneği bağımsız değişkeni ad=değer biçiminde olmak zorundadır" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "modüllerden otomatik olarak docstrings ekle" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "doctest bloklarında kod parçacıklarını otomatik olarak dene" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "farklı projelerin Sphinx begelendirmeleri arasında bağlantıla" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "oluşturmada gösterilebilen veya gizlenebilen \"yapılacaklar\" girişlerini yaz" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "belgelendirme kapsamı için denetlemeler" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "PNG veya SVG resimleri olarak işleneni, matematiği dahil et" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "MathJax ile tarayıcıda işleneni, matematiği dahil et" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "yapılandırma değerlerine dayalı içeriğin koşullu olarak eklenmesi" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "belgelenmiş Python nesnelerinin kaynak koduna bağlantıları dahil et" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "belgeyi GitHub sayfalarında yayımlamak için .nojekyll dosyası oluştur" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "Lütfen geçerli bir yol adı girin." -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "Lütfen biraz metin girin." -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "Lütfen %s seçeneklerinden birini girin." -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "Lütfen ya 'y' ya da 'n' girin." -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "Lütfen bir dosya soneki girin, örn. '.rst' veya '.txt'." -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Sphinx %s hızlı başlangıç yardımcı uygulamasına hoş geldiniz." -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "Lütfen aşağıdaki ayarlar için değerleri girin (parantez içinde verilirse\nvarsayılan değeri kabul etmek için yalnızca Enter tuşuna basın)." -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "Seçilen kök dizin yolu: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "Belgelendirme için kök dizin yolunu girin." -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "Belgelendirme için kök dizin yolu" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Hata: seçilen kök dizin yolunda varolan bir conf.py bulundu." -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sfenks-quickstart varolan Sphinx projelerinin üzerine yazmayacak." -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Lütfen yeni bir kök dizin yolu girin (ya da çıkmak için yalnızca Enter'a basın)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "Sphinx çıktısının oluşturma dizinini yerleştirmek için iki seçeneğiniz var.\nYa, kök dizin yolu içinde bir \"_build\" dizini kullanın, ya da kök dizin yolu\niçinde \"source\" ve \"build\" dizinlerini ayırın." -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "Source ve build dizinlerini ayır (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "Kök dizinin içinde, iki dizin daha oluşturulacaktır; özel HTML şablonları için \"_templates\"\nve özel stil sayfaları ve diğer sabit dosyalar için \"_static\".\nAlt çizgi yerine başka bir önek (\".\" gibi) girebilirsiniz." -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "Templates ve static dizinleri için ad öneki" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "Proje adı, oluşturulan belgelendirmedeki çeşitli yerlerde oluşacak." -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "Proje adı" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "Hazırlayan ad(ları)ı" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1515,15 +1564,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "Proje sürümü" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "Proje yayımı" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1533,21 +1582,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "Eğer belgeler İngilizce dışında bir dilde yazıldıysa, bunun dil koduna\ngöre burada bir dil seçebilirsiniz. Sphinx daha sonra, ürettiği metni o\ndile çevirecektir.\n\nDesteklenen kodların listesi için\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language adresine bakın." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "Proje dili" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "Kaynak dosya soneki" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1555,91 +1604,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "Bir belge, \"içindekiler ağacı\"nın üst düğümü olarak kabul edilmesi, yani\nbelgelerin hiyerarşik yapısının kökü olması açısından özeldir.\nNormalde bu \"dizin\"dir, ancak \"dizin\" belgeniz özel bir şablonsa,\nbunu başka bir dosya adına da ayarlayabilirsiniz." -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "Asıl belgenizin adı (sonek olmadan)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "Hata: %s asıl dosyası zaten seçilen kök dizin yolunda bulundu." -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sfenks-quickstart varolan dosyanın üzerine yazmayacak." -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "Lütfen yeni bir dosya adı girin ya da varolan dosyayı yeniden adlandırın ve Enter tuşuna basın" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Aşağıdaki Sphinx uzantılarından hangisinin etkinleştirilmesi gerektiğini gösterir:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Not: imgmath ve mathjax aynı anda etkinleştirilemez. imgmath seçimi kaldırıldı." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "Makefile ve Windows komut dosyası sizin için oluşturulabilir,\nböylece doğrudan örn. sphinx-build çağırmak yerine sadece\n`make html' komutu çalıştırılmak zorundadır." -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "Makefile oluşturulsun mu? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "Windows komut satırı oluşturulsun mu? (y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "%s dosyası oluşturuluyor." -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "%s dosyası zaten var, atlanıyor." -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "Tamamlandı: İlk dizin yapısı oluşturuldu." -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "Artık %s asıl dosyanızı doldurmalı ve diğer belgelendirme kaynak dosyalarını\noluşturmalısınız." -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "Belgeleri oluşturmak için Makefile'ı kullanın, aşağıdaki gibi:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "Belgeleri oluşturmak için sphinx-build komutunu kullanın, aşağıdaki gibi:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "\"builder\" burada desteklenen oluşturuculardan biridir, örn. html, latex veya linkcheck." -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1649,135 +1698,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nBir Sphinx projesi için gerekli dosyaları oluşturun.\n\nsphinx-quickstart, projeniz hakkında bazı sorular soran ve ardından tam bir\nbelgelendirme dizini ve örnek oluşturan etkileşimli bir araçtır\nMakefile, sphinx-build ile kullanılır.\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "sessiz kipi" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "proje kök dizini" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "Yapı seçenekleri" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "eğer belirtildiyse, kaynak ve oluşturma dizinlerini ayırın" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "_templates vb. içinde nokta için değiştirme" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "Proje temel seçenekleri" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "proje adı" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "hazırlayan adları" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "projenin sürümü" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "projenin yayımı" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "belge dili" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "kaynak dosya soneki" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "asıl belge adı" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "epub kullan" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "Uzantı seçenekleri" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "%s uzantısını etkinleştir" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "rasgele uzantıları etkinleştir" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefile ve Batchfile oluşturma" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "makefile oluştur" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "makefile oluşturma" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "batchfile oluştur" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "batchfile oluşturma" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat için make-mode kullan" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat için make-mode kullanma" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "Proje şablonlama" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "şablon dosyaları için şablon dizini" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "bir şablon değişkeni tanımla" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"sessiz\" belirtilmiş, ancak herhangi bir \"proje\" veya \"hazırlayan\" belirtilmemiş." -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Hata: belirtilen yol bir dizin değil ya da sphinx dosyaları zaten var." -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sfenks-quickstart sadece boş bir dizin içine oluşturur. Lütfen yeni bir kök dizin yolu belirtin." -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "Geçersiz şablon değişkeni: %s" @@ -1828,47 +1877,47 @@ msgstr "Ayrık bir \"satır\" kümesiyle \"lineno-match\" kullanılamıyor" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Satır özelliği %r: dahil edilen %r dosyasından çekilen hiç satır yok" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree, hariç tutulan %r belgesine başvuru içeriyor" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree, varolmayan %r belgesine başvuru içeriyor" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Bölümü hazırlayan: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Modülü hazırlayan: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Kodu hazırlayan: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Hazırlayan: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1883,82 +1932,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Parametreler" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Dönüşler" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Dönüş türü" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "üyesi" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "değişkeni" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "işlevi" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "makrosu" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "birliği" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "numaralandırıcı" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "türü" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "%s sürümünde geldi" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1970,346 +1947,423 @@ msgstr "%s sürümünde değişti" msgid "Deprecated since version %s" msgstr "%s sürümünden beri kullanım dışı" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "%s kopya alıntısı, %s içindeki diğer örnek" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "Alıntı [%s] kaynak gösterilmedi." -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "Şablon Parametreleri" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Şunu verir: " - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "sınıfı" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "kavramı" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (yerleşik işlev)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s yöntemi)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (sınıf)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (genel değişken veya sabit)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s özniteliği)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Bağımsız Değişkenler" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Şunu verir: " + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Dönüşler" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Dönüş türü" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "işlevi" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "yöntemi" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "sınıfı" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "özniteliği" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "modülü" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "kopya %s açıklamasına ait %s, diğer %s, %s içinde" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "%s denkleminin kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Geçersiz math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Değişkenler" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (yönerge)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Harekete geçirir" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (yönerge seçeneği)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "yönergesi" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "yönerge seçeneği" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "rolü" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "%s %s kopya açıklaması, %s içindeki diğer örnek" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Parametreler" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "üyesi" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "değişkeni" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "makrosu" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "birliği" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "numaralandırıcı" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "türü" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "Şablon Parametreleri" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "kavramı" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (yerleşik değişken)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (yerleşik sınıf)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içindeki sınıf)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf yöntemi)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s sabit yöntemi)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "modülleri" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Kullanım dışı" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "özel durum" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "sınıf yöntemi" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "sabit yöntemi" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "çapraz referans %r için birden fazla hedef bulundu: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (kullanım dışı)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (yönerge)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (yönerge seçeneği)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (rol)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "yönergesi" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "yönerge seçeneği" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "rolü" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Değişkenler" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "%s %s kopya açıklaması, %s içindeki diğer örnek" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Harekete geçirir" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "ortam değişkeni; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Hatalı biçimlendirilmiş seçenek açıklaması %r, \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" veya \"+opt args\" şeklinde görünmelidir" -#: sphinx/domains/std.py:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s komut satırı seçeneği" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "komut satırı seçeneği" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "sözlük teriminden önce boş satır gelmek zorundadır" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "sözlük terimleri boş satırlarla ayrılmamak zorundadır" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "sözlük yanlış biçimlendirilmiş gibi görünüyor, girintiyi gözden geçirin" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "sözlük terimi" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "dilbilgisi belirteci" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "başvuru etiketi" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "ortam değişkeni" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "program seçeneği" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "belge" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Modül Dizini" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Arama Sayfası" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "%s kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "kopya %s açıklamasına ait %s, %s içindeki diğer örnek " -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig etkisizleştirildi. :numref: yoksayıldı." -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "bağlantının resim yazısı yok: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "geçersiz numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "geçersiz numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2326,35 +2380,35 @@ msgstr "yapılandırma değişti" msgid "extensions changed" msgstr "uzantılar değişti" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "yapım ortamı sürümü şu anki değil" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "kaynak dizin değişti" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Bu ortam seçilen oluşturucuyla uyumsuzdur, lütfen başka bir belge ağacı dizini seçin." -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s içinde belgeleri tarama başarısız oldu: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Etki alanı %r kayıtlı değil" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "belge herhangi bir toctree içine dahil değil" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "kendinden kaynaklı toctree bulundu. Yoksayıldı." @@ -2378,39 +2432,39 @@ msgstr "bilinmeyen dizin girişi türü %r" msgid "Symbols" msgstr "Semboller" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "dairesel toctree kaynakları algılandı, yoksayılan: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree, başlığı olmayan %r belgesine başvuru içeriyor: hiç bağlantı oluşturulmayacaktır" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "resim dosyası okunabilir değil: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "%s resim dosyası okunabilir değil: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "indirme dosyası okunabilir değil: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s zaten atanmış bölüm numaralarıdır (iç içe numaralı toctree mi?)" @@ -2420,7 +2474,7 @@ msgstr "%s zaten atanmış bölüm numaralarıdır (iç içe numaralı toctree m msgid "Would create file %s." msgstr "%s dosyası oluşturur." -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2432,149 +2486,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\nPython modülleri ve paketleri için içine art arda bakın ve içindeki\npaket başına otomodül talimatlarını içeren bir reST dosyası oluşturun.\n\n'ler, nesilden hariç tutulacak olan dosya ve/veya dizin şekilleri olabilir.\n\nNot: Varsayılan olarak bu betik zaten oluşturulmuş dosyaların üzerine yazmayacak." -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "belge için modüle giden yol" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "nesilden hariç tutmak için fnmatch-style dosyası ve/veya dizin şekilleri" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "tüm çıktıların yerleştirileceği dizin" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "TOC'da gösterilecek alt modüllerin en fazla derinliği (varsayılan: 4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "varolan dosyaların üzerine yaz" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "sembolik bağlantıları takip edin. Collective.recipe.omelette ile birleştirildiğinde güçlü." -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "dosyaları oluşturmadan betiği çalıştır" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "her modül için belgelendirmeyi kendi sayfasına koy" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "\"_private\" modülleri dahil" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "içindekiler dosyası adı (varsayılan: modüller)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "içindekiler tablosu oluşturma" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "modül/paket paketleri için başlıklar oluşturma (örn. docstrings zaten bunları içerdiğinde)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "modül belgelerini alt modül belgelerinin önüne koyun" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "modül yollarını PEP-0420 kapalı ad alanları özelliklerine göre yorumla" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "dosya soneki (varsayılan: rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "sphinx-quickstart ile tam bir proje oluştur" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "--full yazıldığında, append module_path to sys.path, kullanılır" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "proje adı (varsayılan: kök modül adı)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "--full yazıldığında, proje hazırlayan(lar)ı kullanılır" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "--full yazıldığında, proje sürümü kullanılır" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "--full yazıldığında, varsayılanı to --doc-version, proje yayımı kullanılır" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "uzantı seçenekleri" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s bir dizin değil." -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2598,24 +2652,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2626,32 +2680,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2661,7 +2715,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2671,27 +2725,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "nokta kodu %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[grafik: %s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[grafik]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2699,7 +2753,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2709,173 +2763,178 @@ msgid "" "%r" msgstr "dönüştürmeden hata ile çıkıldı:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "dönüştürme komutu %r çalıştırılamaz, image_converter ayarını gözden geçirin" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX komutu %r çalıştırılamaz (matematik görüntüleme için gerekli), imgmath_latex ayarını gözden geçirin" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s komutu %r çalıştırılamaz (matematik görüntüleme için gerekli), imgmath_%s ayarını gözden geçirin" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "görüntü latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "satır içi latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx envanteri taşındı: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "%s konumundan intersphinx envanteri yükleniyor..." -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "aşağıdaki sorunlardan dolayı envanterlerden herhangi birine ulaşılamadı:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(%s içinde)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[kaynak]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Yapılacaklar" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<>, %s içinde, %d. satırda bulunur.)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "özgün giriş" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[belgeler]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "Modül kodu" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s öğesinin kaynak kodu

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "Genel bakış: modül kodu" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

Kodları mevcut bütün modüller

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2883,112 +2942,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2996,25 +3055,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3088,99 +3147,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "Örnek" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Örnekler" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "Notlar" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "Diğer Parametreler" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "Kaynaklar" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "Uyarılar" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "Getiriler" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Dikkat" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Uyarı" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Tehlike" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Hata" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "İpucu" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Önemli" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Not" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Ayrıca bakınız" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Tüyo" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Uyarı" @@ -3212,7 +3271,7 @@ msgid "Table of Contents" msgstr "İçindekiler" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Ara" @@ -3345,34 +3404,22 @@ msgstr "Sonraki konu" msgid "next chapter" msgstr "sonraki bölüm" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Arama işlevini kullanabilmek için lütfen JavaScript'i\n etkinleştirin." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "ara" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Arama Sonuçları" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Arama sonucunda herhangi bir belge bulunamadı. Bütün kelimeleri doğru yazdığınızdan ve gerekli bütün kategorileri seçtiğinizden emin olun." - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Hızlı Arama" @@ -3409,20 +3456,30 @@ msgstr "C API'sindeki değişiklikler" msgid "Other changes" msgstr "Diğer değişiklikler" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Arama Sonuçları" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Arama sonucunda herhangi bir belge bulunamadı. Bütün kelimeleri doğru yazdığınızdan ve gerekli bütün kategorileri seçtiğinizden emin olun." + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "Aranıyor" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "Aramaya hazırlanıyor..." -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ", şunun içinde:" @@ -3443,30 +3500,30 @@ msgstr "Yan çubuğu genişlet" msgid "Contents" msgstr "İçindekiler" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3478,13 +3535,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,90 +3568,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "Bilinmeyen resim biçimi: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "atlandı" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "başarısız oldu" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "okuma hatası: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "yazma hatası: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "varsayılan rol %s bulunamadı" @@ -3617,27 +3674,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3654,13 +3711,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Dipnotlar" @@ -3679,20 +3736,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[resim: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[resim]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 25db69e0cabffddf1ccd37ab5be5d19a79d03496..d5d87132419f76ab09bcd75d78fa00c63c85de4b 100644 GIT binary patch delta 1589 zcmYM!OGs346vy$y=xB~_$IQ2;y(~0moHUFy1HnZQy2%iVSx6b=qadM(p-7CN?1AX6 z5W#{Vbr#VgL9#$B+enZ>sGC5lT^Om<_a}d7xZcnG-+TY(od3D^`XMk7hWcLL>6zh4SZOKem8DG71oAq*1=BmdN3FJQS(QTQ1%>s7{xrCLNEDk zkpoq}gbKKZD#S}x59Xl8`523psKAF%9jQkpZgjSx?(e~!*oUb&hFa)LH=fa${I zDqD7bM4n7(}gj1X+tcLp_2CH-7D|zr{!<7v8%Y zmQewJpjxzndY0K_RRLwFKtbe^)uCROCRD*EPzjr{08gXt>qX7Gf$G>@RNhBE`p-*X zPu-2vs6=z_#sw^4yy(W8sFlSKP5Mv?(@_QFpgK^9igN(9fDmdyji`BH%)#@C^j|H$ z$q5CxkFR*>gQ&OkB<)be=TIxThKF7KZ_ao4OPG&JdCMS zMQzrEwHP_YK@kTJu>vPiiI=e&eck9kqkY6qTtTh4nPsW5pz=*&slNXu4m2T_YzpkhV_59QVN`%lH|}-bLUrZ=>Jg42i?bP2g3qXD zzK-fhh${DEJ*tok=+)2gp9EO delta 1645 zcmYM!OGwmF6vy$~jFaz2KJu+&YFVi?nr{j*qlHKq7Huji#7r{MC`@7!gQyl#WF{0Y z400irnn)B88Ae5=s6mSidP1VuqOdUN`=bjD<9zP@&%NiId;b5i!}HSPoeB5pG`#ll zm%v}7Q?viCpykE{GYv);#-l%`;0j!i5x5CgViktrLHm6R1~R{3uXkZI^FE9*#%mri z2;#z9RG=>yg}+gW!hDVK!#LcGsdl~}RagV^HZ6Q;UmM0@7i#|?63RTl035}5e1$IZ zn{NzM`2s4SFWFQ`6gqINooAvC^HNmct*DM{MUyeFx%|E^7Bm>r%%XYy{yI>TR@E!6t^L(fy4vwMq!Ptmy)X6(gw_pI3 z;0cnkGVPGh2e|1%7fa0%7AB(i8j87goUmf~JJ??DCVxAS4^V^n8e zqi*E~ z&iXlnbF(%SW_b$So{hzMg+q&hI~>lOY|l_-NQo=v;rQVAuzP%v_xSL{>4~<9D-&I8 K96A#b==uw^e4;x5 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 4da497a4c5f..aa18ce249d5 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 14:58+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk , 2009\n" "Language-Team: Ukrainian (Ukraine) (http://app.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:155 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Вбудовані елементи" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Рівень модуля" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:163 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:158 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:176 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (в " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Загальний індекс" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "індекс" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "наступний" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "попередній" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "Індекс" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "Реліз" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Автор секції: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Автор: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,433 +1929,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" +msgstr "Змінено в версії %s" + +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" +msgstr "Застаріло починаючи з версії %s" + +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Параметри" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Повертає" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" +msgstr "%s() (вбудована функція)" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Тип повернення" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" +msgstr "%s() (%s метод)" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "член" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" +msgstr "%s() (клас)" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "функція" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "макрос" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" +msgstr "%s (%s атрибут)" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Повертає" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Тип повернення" + +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" +msgstr "%s (модуль)" + +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "функція" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "тип" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "клас" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" -msgstr "Нове в версії %s" +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "атрибут" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" -msgstr "Змінено в версії %s" +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "модуль" -#: sphinx/domains/changeset.py:25 +#: sphinx/domains/javascript.py:404 #, python-format -msgid "Deprecated since version %s" -msgstr "Застаріло починаючи з версії %s" +msgid "duplicate %s description of %s, other %s in %s" +msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/math.py:63 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:213 #, python-format -msgid "%s (C++ %s)" +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "клас" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" -msgstr "%s() (вбудована функція)" +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" -msgstr "%s() (%s метод)" +msgid "%s (C %s)" +msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" -msgstr "%s() (клас)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Параметри" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" -msgstr "%s (%s атрибут)" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "член" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" -msgstr "%s (модуль)" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "макрос" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" -msgstr "атрибут" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" -msgstr "модуль" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "тип" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Викликає" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "виняткова ситуація" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr " (застарілий)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Викликає" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "змінна оточення; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "змінна оточення" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Сторінка пошуку" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Доробити" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Увага" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Застереження" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Небезпека" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Помилка" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Підказка" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Важливо" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Примітка" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Дивись також" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Порада" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Попередження" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Пошук" @@ -3342,34 +3401,22 @@ msgstr "Наступна тема" msgid "next chapter" msgstr "наступний розділ" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Будь-ласка вімкніть підтримку JavaScript, щоб ввікнути\n\"\n\" пошук." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "пошук" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "Результати пошуку" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "Швидкий пошук" @@ -3406,20 +3453,30 @@ msgstr "зміни C API" msgid "Other changes" msgstr "Інші зміни" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "Результати пошуку" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index d4cca4b00754ed7536556c1630e7efb0adaf3eb1..95a540d6ded0e3328f2dfc87653151f23f28b928 100644 GIT binary patch delta 30 lcmaFP{G540Gp~uRfr+l6iGq=_m67?z2|33;>Mu2dMx6 delta 30 lcmaFP{G540Gq16(frYN2xq_jYm5IT|2|Nk2de-8 diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 17034938054..c1ced154867 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (http://app.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index d61d81f81fda3bd55f084a4093baf5d1708cead1..f361bb63f80f979ccfdc038575ed4dd7f87ff458 100644 GIT binary patch delta 1766 zcmYMzT}V_x7{>9j)ivGL)lJKfGCwjhTHAE9lD?F}B1rNkvOv-(N~~@oG;t{`1@S^n zA|xrhC`gM~qAY~E$S^_Ki%5v1P@y7;B8h^c|DyvfyZbvcXXc%E-ZQ7wH@Y@B;f?Gv zd`|FN#_y;@t^c1sr!j7t{TPK$F$SO8_6RPf9mWKlw(Xy|gtjZ%n0U;>I4r;nEJ4Nx zO*I!TI?kd3UqDT4MNRC*r5M6w9Kl66g5CmUg-ewX<^6zyqjfe#ExxQHeC6O5KK<-;J7o6SMH1?GK|8d}E!kPNO#P z#YO$K;14mC@f_5z` z@iyDOjfxk1$puN7_qJmO^)@((uAOC~O69Zd4XE+Ow!IH^Xe&?&G@t@^B9Gnlp%Qw8 ziuVGw!7#4U`#;Hrb{;#I_j+$N0oX8wO}&OLGuF0T4pP1$7QHE z706I?4D|@=P~)zl;@`z&);ABipz3B6b!a9~6`4c@`edC&orMUpQ6ed*itI%7m!syL zM4g>8sQH(z9hgqL2UWR23~IqwTk!QeQUY;Emq|q}r~=usgoQp4jU83G7Y319R}F>!+oe^`&2cy)cAXI0HRgf;=C! z2#pK|4x<8}L`|$kO>D$|7{~sYz)bvsS~#VLSsv!0=8tiXM}9WdIR}|yi&4+7!~pBt zRvP&XR3Se*!$pBEA)B#Vn2wEDfGwy>v>`wHz(omnqAK+ll~{lv-LMc-aX2dOXf8@% ztYm$gOG6XZU?D~@8&9EjdIggSpi120`ma%e+cBAl8}G#FjCY|*K7q-@aTaQw3e?69 zU^H2J8Y<06cjGMfp??vz<9n!A(TZB=BWm7P)VyD)fPYcP$IngHwsh3}KB)NvaS)ce z`|~rXKW$seMI~K}+VMuz&UT^#?Loc!L#|(kO5`f4y@$TdE z6tgF&S8*iD3sQh{s0S{ic5(;xu4AY`&rn}M0#%7FRDetliW2m&7=x(8xC)g>#CZ^h z(62!y-r)Mt7c>;`3zC#|BbxfzsIQ_3wX+$hN-c8z<*4V^yZ$!R;oXl);5;hMJ>*!} zD^x;lsCb_-`Tcj%7|B3)dfIsj>cJ2e;WXrDVJ;r-L*1`KRqQ4zkr?U~JwnBMhr`g9 zYgUer=gu5M}Bslivl;JGJT3Vgl}*%wxa^&QGb=Z7`5C0v85 zzy&vc9aVuQcmFYJqphe)B=T&wji&L90Zr`B$1;&<^Pbv*g^nw#6k1LP)0&7xyp|W6XLzX`^ he_=;+ZP?q{(R|C>wkaIHS?R6ocu=35Tao+8_YYodtY`oL diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index b93c5651051..2a39ab571f1 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hoat Le Van , 2014\n" "Language-Team: Vietnamese (http://app.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -38,104 +38,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,70 +156,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,290 +232,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Các đề nghị nâng cao Python; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:295 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -527,8 +569,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -577,7 +619,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -586,50 +628,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -638,36 +680,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -675,470 +717,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "Dựng sẵn" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "Mức mô-đun" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "(trong" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Chỉ mục chung" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1153,15 +1195,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1220,8 +1262,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1253,7 +1295,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1261,249 +1305,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1512,15 +1561,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1530,21 +1579,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1552,91 +1601,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1646,135 +1695,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1825,47 +1874,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "Tác giả mục:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "Tác giả mô-đun:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "Tác giả mã lệnh:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "Tác giả:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1880,82 +1929,10 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "Tham số" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "Trả về" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "Kiểu trả về" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "thuộc tính" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "biến" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "hàm" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "macro" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "kiểu" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "Mới từ phiên bản %s" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1967,346 +1944,423 @@ msgstr "Thay đổi trong phiên bản %s" msgid "Deprecated since version %s" msgstr "Sắp loại bỏ từ phiên bản %s" -#: sphinx/domains/citation.py:70 -#, python-format -msgid "duplicate citation %s, other instance in %s" -msgstr "" - -#: sphinx/domains/citation.py:81 +#: sphinx/domains/changeset.py:26 #, python-format -msgid "Citation [%s] is not referenced." +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/citation.py:71 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/citation.py:82 #, python-format -msgid "%s (C++ %s)" -msgstr "" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "Ném" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "lớp" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (lớp)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "Đối số" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "Ném" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "Trả về" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "Kiểu trả về" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "hàm" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "lớp" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "thuộc tính" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "mô-đun" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" -msgstr "Các biến" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (chỉ thị)" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "Đưa ra" +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (vai trò)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "chỉ thị" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "vai trò" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "Tham số" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "thuộc tính" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" +msgstr "biến" + +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "kiểu" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "ngoại lệ" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(sắp loại bỏ)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (chỉ thị)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (vai trò)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "chỉ thị" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "vai trò" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "Các biến" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "Đưa ra" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "các biến môi trường; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "chú giải thuật ngữ" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2323,35 +2377,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2375,39 +2429,39 @@ msgstr "" msgid "Symbols" msgstr "Biểu tượng" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2471,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2429,149 +2483,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2595,24 +2649,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2623,32 +2677,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2658,7 +2712,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2668,27 +2722,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2696,7 +2750,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2706,173 +2760,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 +#, python-format +msgid "inventory for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:557 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "domain for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2880,112 +2939,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2993,25 +3052,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3085,99 +3144,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "Các ví dụ" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "Chú ý" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "Cảnh báo" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "Nguy hiểm" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "Lỗi" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "Gợi ý" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "Quan trọng" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "Ghi chú" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "Xem thêm" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "Mẹo" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "Cảnh báo" @@ -3209,7 +3268,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "Tìm Kiếm" @@ -3342,34 +3401,22 @@ msgstr "Chủ đề tiếp" msgid "next chapter" msgstr "chương tiếp" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Hãy bật JavaScript để dùng tính năng\ntìm kiếm." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3406,20 +3453,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3440,30 +3497,30 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3475,13 +3532,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3508,90 +3565,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3614,27 +3671,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3651,13 +3708,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3676,20 +3733,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index f3be5d8cbcaf9370936aee3f841db4e145d253d2..bd6aca7866c19eafb56e7ea6c6947214af7e31ab 100644 GIT binary patch delta 30 lcmaFP{G540Gp~uRfr+l6iGq=_m67?z2|33;>Mu2dMx6 delta 30 lcmaFP{G540Gq16(frYN2xq_jYm5IT|2|Nk2de-8 diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 41004d1d2c3..0f7f88de2bf 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://app.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: yue\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented 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 59cc9ef59513dde8e67bf96ae628cf1cf7eda404..4fd8ec7d49737c5edfead9a079c48548c8b07f57 100644 GIT binary patch delta 11891 zcmYM)33!fI`p5C-jaZWi*%y&FLd24lB$kkrs@NhVC=G4J5}j62W3QKt*4|QTFGUwc zb$DAbW2s7uR?9S1dpi`s-^$$FXvp>f38kH=RVJJ&biNho`ji=U-)j_IFv36+TqWVf95)@Lw=cpZ8g(%4I*E1tt}Y@F>l zL70uH*c+p925PI;;Bvf-L-Bbwlt-QOs4Z#Gk!{3mWLKQN=*GFIjBU2Q-;w+)#rx>c z9)E%SQ$+}ZJ*VIfWR7Ofs6B~on zq4Q#{$INUu9eTkz)ZSdhD7=fY7{*3wpiI;Xaxfpep^9>abss9VmymLCd^(vuZ-*-C zKG+w>qiX4pheiz=r?C#6N2U6jwPt5CP(13vargv&f`ORuF#p9&)Lsup{&7n9R~~Lc zosJu*8tc%-WTHQ6L7pKrIC;)URMEYL+LG<48SY1=vJ%-|$L|qSOx;ieO-1JF>_^o~ zH3}&iTcZXn!6cl9EpRicSWjS6o&P#avk@KXs0;mUJQpcwXDi0z_gEACx|ux=MqST9 zZP6HX<07n$+fmndqmJWk)D{PHHw%qMAD#ac8f4Q+$0u+CHpi2wjQEg0Ukt-mF181? z!rnd2K+{q29ITGzs3O~I{R)+-E2#G+_oBYA6Z$j0laybT3a1_FhM_nYC*Wh~^fpCR zY@LGIniV(@H)9<77TB7=bmB~`gQHLj9FNM>E*y=g(8IPmUHh01&q53&UWI5 z?O_Eb;tkY`qo_#P1l6C4X*dw;;e1r)*5DvqkIK+J)K>ZwlK+-8>J*Y*Qk#V##Q8<$ z1tq9G8;=^G3~S*QREpn6P2e+3z^_rocn?QmPCt{0caZIO&S7gz=x;LdSby@bluV^V zU%u5=FHR;tg4&WU1I(!yh=YksQ4=_bTIo6T$DdFc{1bz)&Z8!dK^1WlHpV`v_fGK8 z(1Y`^1};afa4qV^Z=+VY3zf18)Ycq9W#**qzl>VQPpE+dC=9*NjUm_+^;|aA#XQVI z&j1?w;Jl8taSu}9&Oy|`L2R5R5`&spGKOImw!nPUi>Kh<@I}-o{3dE5X;iRQ{xBx7 z#idxEcv*4Pf;`S98k*rhQ3HH}y5T4)Mdy*ZIJb~@I{DM|u zcpPWrEo70-w4r9@r?4sUJsUSJF~yjNO+8$Ag+?6y8#~}R%)+Q)W=s0wD&k_~ALn=e zMSVHN%yI(0kJ{@NBl!GcI{IQJy0JYT$6{2*(ngvs9FCr7I;PQRgey=3@5XHW6_xtb zQZtcxSd(}uR>w7{Bgasu;yl*C+xRKoN4@6|XL26KJ!O98Y<TE#~r8-RmZ2zxqlk{h}WTNYzxNVepGRO`!xC2 z%x}=q7JZ&EKligyr(pp4eXF4Ab!*W?%~6Q|i+hj;-+k_QKyW5xYEVe#07# zn#fL6rjK}NC}q_s(KZ-~I$nKI6Bvamvgc4UUx|TOZasur;Ym!ui`W?JjOAUJf_knS zM&U?Qv6kUO=-EI+RelMRFlU_k73&#nK)e7o<9AR+x(_wc^Qan#e9mMj7K4dfqP8p- zwZc5i#2MHg%ds2&YGRMmVZ8Y{JsI=3@IGoQ?qgTX`nyTB$GQXS(tjCS<1JLinsF2~ z;apTa7(3&5OvhcQj9f$ASAC)~!~Qp-5kW^T>cs=GA(mn=&c+~Ijp4WrL+~JKZ_lER zt?wjLOPx?#REViqf;x^%Q4?5+Dd@#0o&Sq8^hJAs+QVj(&E6MaTjD`j50|3$@=bJO z1!^LfP+NBgHNmD+Oa^i=jkrJR{c|uBy{OakDS8TMRMOB)x)n?{198KK?7D}BzIYA( zVOAWE+QW|c5cWq+Xa#Cz8&MfKfH`;rb)3>>nfs@rGPf7CrKd0qYrkMllN5Nswm;}aliDU2K>r}r7qApt;j6a)Q|v%|67w*0wyBjN*pzrGYC;<^ z5sxFq>2dDU&~ZqaV_y6?#t|<-t#})1@4i5->I-y=X8vElq>uuB)^qOb> zGMpgYC)CB4-GUqe{YY>mMPC~uVgIduB%)^iE z^?=3ZH=hu!Nq-xB7;`ZLU$F7+#pGYr?Yv@+p&x3c^-wF1!A@9$UGXh!g4a>04q0Lb zO1AdJmh?|RWnv?0;15v~^<8RCQv${lr!6J_N?kwOF&*m?Z$R~LM}3gapfCQ4I^Tbw z8`EAjndpmEA1u`Ui!cP=!C>5nwXhQF;aSu|e)P}?pb@mp4D3d&AO)3)V$?)Np)&G{ z?LURhi7%sGTyJ^RadIM2wb28Wfq$SfybgnKGlt?`)Wker*^ciqkdFJP8v|CD8gOGc zaaU9Z9>>-=47I|QsFiF()yQ!y!Lz6>%2{brKM-|&D*9m=Hr4rmiAFm*cA^_^U@iu& zGR0GfI%bcdCN>FGobyo`*kR*uZ~(FIYV!w>V$335jmq#>s0m!a+V}&u)cLj}z#k&XaVo7(y=GGGv)0%emD&+ljMFe0PovKJZ#V?w)|p>OW?&}c zJ6;+Yc-3BTzivJtg&0ZyI8^Evpzd3Y+Pg!jOq@kkv(I`HC!iM83pIgBSRI$5Cb9~X z@F04$!doh}%LOZYl9=6vnqcZgXHGzmXP0_ZncE;T< zY6wd({B4TQhb`Vj{wsK3<7QsSg^^qMiAFqYtJ&+Qcg?BTfhwK@*aSbtnfNod!?D}U zso08n#1}9do4;qi4umoX4-FODf6U;18*2nGE z3fuoR>cjP&?Z1HtmN4j`Ii(KyA%h zR4tUF20Dt`f{PfA_b~uNy=I_zj3@4hD$b#%-{UN#(TI*sxC@VZ?9^{e?0-CsS#%7?QoM=tjmg**{cr*%Vi~H)w_q6KJC!ta;}z5kBK~Ct zY=TNz20nxXQN_0!HSk9miHA`W`wrtUS|YU=XI_G*qVE#RzOr(HRt>>)Qcu!Tbz!)a2IA{jeX|Dol*AvAIy|6H|wd_WG8C=J@Wy z5c)6SM7)DKU1JZK1)jlh#&_=0(29Z&oBuH>9^;5#L=CtJbMXVzif^MPpubsa1lc$l zAIDrgje0KXGjj@>qT)7K8@r&kus1f>`5#ZC1|92AH@=05=tUjNbEpUXj+pyGu_ti@ z8;`P%!DjSN#9whe*27mnx9_!jF@gU5ScCDM?`i0mT~`PCeqmDRhe^a)I1h(oNBjkI zFy*Kzs%Nnw@#`3aAELJG8`KuvLS?AtF>_33qCfE}^z^6kHVxhQz+R~TA9F)PRDTN_ zceM7vCiFjw4RAW@oUgXm-$N~AkF^2=i9fUP8Po(W{D=Ijah(pO_^!R7`j=*4f22s9 zSkw!%P({@d^<1I#2}~w_2BUEeYQSCC2M?p3kE%33l;TivivEH?17yHZRiU=V`aRThiRVm)3UCbZ0L<6< zKTKl)9pT@YUyq+f?afhCO?++rFY1(B!AtlTYT!%Xnv_TU*L+x7p$06%_BahQa2FQf zb=3QF&Pxx!)l@b30fS0i5o+L>7=iO`{08!|bhe>hH0}bw>th9KBF(=u&ksRmaz56= z%@}}Q8-Ij#i9b`!_|9n>e)t^@!|V7w7G5;x|4Y;g{z8AuVEM{KCyc{KF$|}migz*Q z;Cj?VE}&NITsF_w#D0V!=uxVkqLGTPU?x^zU;GnWW3T_2|3#w=6@QD}G5C9P{)eC@ zI29vtyN!>aPJ`C@5PQ7;<;{SRERC<7-i#SsEKT~?nDi^ zAG5L6&nAUkP#G#gt#CG~Xy36Ou>EIkd>>U4VZWFRdNOF}fj-zApTf@gDk@c{F%W;o z6#NTSOer_abD5Y<+}p-ws1>h9?ezuJ{k3nJ??pY-X~;&l)Z=tF4QB*~aG?zK;BwT& zKExnAg___sOvkWaO>uQY4KNG~@NcMz?m@lhNA$;#Tju#V)Pj0qq|Sdaje2xUK&^N- zj=lD=Uvr(B@fgTOG zpGIT6ZVmp^yr>PP(Vv6)I2I@9e$)P>p8c1(&x1N{Yf(jb0F}AlFcqU5SJnMJFpu~p z)cq&Xjdw8y8@OCmU&eMG8hTMbRI2A-CjJ|X@P_pfA6L~DtVZ=;MGcr!%~iGXF&IKT z5!>McR8bznW_S<7Fu~VV^$Sl2j3oB-qoEl-i;ZvzK7u>30p3TgFsiz%DwR2?7nfoz zzJ}WSy{N6cj4jcxhOrH5uZN>1J`;8PP9QbmasEd`6R2O)Rkalvs23Drf*!yq+=LNW zfhwkRSPg5|GW~v-LEP9n2vrMR$R5EhvK8rf{sAcRt-n7z(LeX{3TmsnrJZ2I5Ews;9UVnhD?N`-w-(;p8>iR%b%9o;2y9f3BDbz~;#D?e&Fd4`}UGIrH1*1`!n~5H!RfJ{L8?H&O4|hg$Iwd>FsA*W>G(8py8i zF?-*c4jqSQQ3KDlH*7(DVt1fk_yCn+zaaC1G}MaQptd9rwZ~&@ycxCEm8gu>4>ns9 zje4$~hlZ-ZJ1T{vQD3Z;H~|w@@pa%>NHdu0zf66YPs$V>l*;o9nr#+8KeG_#3DJkD(^=J0_z$ z!hAn^qiSqCYQpo7FQms=OhbEl2K7bz88rcSq*=)$s27bveLB~nR=yYY#XN*6);p;0 zMQW5u@c`6^Yl3w(Y61IEwQ>qWb^dSBP?6M$HboeNnqe5z*23dg< z&0idA0>e=EuSVUs3ALb4P(^v$8W>|1n253ZV&&7&1EW!&;Q6SU*oJzr5_O)hq4u&) zL+?|`Uo>9Qt#E|*aG^KSyZf2DE^p+R5k5=KkBjz3Jr^9~9lEHuulM58jV|vu%a*y8 ze7vI2J96bOKHk}Dife34+vvNb`0a(>;7!Rs0j-l#TPLNpcBi*$m!9R#-(2LX);c-W z`{tI#@k_cN8}9w=*r5pTg&!WcygAoq_$*1d9_t-?{dP?G9Di45-||}ZUE5vdsll!p puI2YbTqDYNgt}6zl?O$-zN}uJ5$g)@UH)>sYhihx#;(3T{|9~kAZ7pn delta 13964 zcma*t2Ygjky7%#YAap_rB%uV@Kmwtp5PI(tkQ(~H07*E3NSY}I@ah4iBuEbd1Vj*& z;7E~-l+bi$WE_e*A|e+N2Xj(T!9j)Vb(y~^%EGre)^UQZqmi0Bam&aJvaIR-|<$uH{ zx>;5VcIs|f{t8LJYwJ;BB;wB8k z9jJ-EjjixAd>ntm);Ow{88`(S5ocmUT!{^E8>-&}ScmbgVj6nz90uVP)Pr}h9{z|n z*6wXO>V$QO`=dGV*RVNO>1(dH#FNBBu`518O{_~l%c_C>QClz^yWr!F&tMDU!{}*A<1&pA_!S0Y zH#R5$M`JY3#^$&IwNr7J`moBJ2f_wfRyc8#<22NSmm-f?yHW3bjw-rJY>f|*U9*~!f7MJJDkBR~ z6I+7RtF>jY$IR>^7u3O5sJ;1bY=(7)m=(1{4fGgl1>8UW(MktdT|-f!K+vwdknX%cK8@p!&Ky! zm4&f*0(ClEkC_@9gUUn_YC)bf8XQS07gclzQCsphYK9-6Qh6KMZmT(kqGFnk8t8ds zvDOEuT4}_nkvI%h)L9sTYp@fRpo+B&+w1%{8);HA1a-sh#4jKPZ=J@r_z-Jg^HFAx z+oJ9d$5yxmZQPBu@NMV*MbvSuP8zhuEl>;XgjIC@2ht$h))1V7E3qS%qaF+xZCQTU z4!gQ|5w*hEW6VJ7Q1Ld@7W^4iWS1SkKxOI&RDT1;@@>I5tjqXT|8c%lSffx6WMV$9 z#2MINyeX;_$JMB zd=2YhiF5rtMi5`YaCA*H9e2cr#NC~E1nPbqcEP7nHE<9c;CWOguiLPDKM$arVSyT#PYTijt#yTilD9fQ$XmN`p}u4M%0PI|krz zC!U5X>iHfTp)}TDBYXq(;yYL!KSZtYI;!K_s1<&TIt@RewyHY$RAvHD*KO2Zhoc6L zMfEoWmC*#$d!AexTFG-5ii#ikCf2P0hU|6Up@qQ84X>e&?@d&V)PBO8isq;Zb-}-2FVq%RSwQ|*)0j!6 zbjNa32Q5;}L`I=+C8(lGMGd&fiI+O@TCBin0Z`fHX( z{#9)4(#$8eFY35VN39?Qd*d_M43A?i{1EHnr#J^Iu``ZJHv{A%WnjIAT9`i-N1a-Jr<$+~67N85MF}>;D;SA)QT?@8YJMoiq2gyz6D)S(PnXiMI%>Gg z%q$wUhf}aQK7rG4C62;ds0ns_&O9H5wTUNVW1NGUP!4v&b&e&dtt`VgS#N$w> zX+7$B&vhE=sQD_hr#(=$Fb{Q{p2e|v9&2J?o|#Zf)E0F?rF^h+Jp+~M=g=QdpuUXf zu`7P-TyLN6I|UxAJB?UwWMK%N#`bs}Rb;N!X3t_!#W@3Y8rGsZK7+0C4r;}9`S5G& zI-wRe0{deEcEa7LelOt^o&QI^20zQ!m@W7n#__-p7>c9UnlIOrsM^RyW#oBONB@Z( zu+BPjTDm(v?ii0P^d4$~g{TD_#iopJ-KL?L{{xl!=IhO|ib1VxI%?)mqXycK5%^cf zpHV4~*kImEz~RLCSQp>Nj`%6|#2OpTkN1J-3Fkrr4W;aP)J*p~@jKXt_-|MZ{Wh6m ztBo44jpI~Q^{>HpxCeDy-^J?aS75Az>MsDbuI zY&P*&tW8{iez*&@(!JOPkDxMe8;4+cp(*AC7)D%-I*!*1$-f5tmJ2d?iz%wUsEo`< zrFuCkQ%6w~x`A4Oz12))2A~&%!euc`Ir|EVx<94W& zjYHiiL>0};sE#kAQu{IX#F{%yh6bUwVkQRQJPgFesEKWG;(b`3xCHgw1*BFy)=e70 zT=3gzQWApQh+AV6PQk{w61AcosG@os6Y*Vaik)9HTk;s{{(P*1>8S6?)7S_1qK%*7 zAf5l8X{gu+?K0;x7BxdRGDB-2Dibd`@dcbp{C6CHBVRHZ$wQ_3Ez|_w!&-P1mGWDt ze(LTv-;JKw!o!96G_ccwcICYOn{XNIlFPjuk#F;#ojLq>pYNfYP{ng%U zz8ldvi+Co+;3@2ZchS?GM%X@cV+OV)UWZEQLG;5vqn^8j+S4kpn9KxWTjKss9FJOI z9%@3xSPkDteZa1wPLu0ZGr_1=$-f?)%!StYq+_M3tIQ3G~C zU7v}*twWung{TGn1@+~uz}^^8WIj-%i^#ujezkf=zqYhtQ~5C zLofuVp`Ob@Wo{j+pCVLopK`o{r(FDogo(J{^E>ve3YB`$vi`_}T@TYCHy&akapN~k zExd+0K0}V0;)=sC;_0{)J*et-6`Rx34`Yd+#C}+UZSW!LG&TFZnYbs4hHi|;7MPAU zuEpQtA#9Cx-!yv}iTXZt!-hE6aiVkGjr!1JI@gzCW8wnGBIo`YWIT^`iAFOXxZ~WY zcFc6p7$ipk# zZnQXIGSLh9+nT{YRJDyynosH=)XFEIYGoFxnv)ziqcZphRMCBoWASGU!m%YzabhU( zLJZXTf04#uEXL*dJwYmTL;@&106{A=bl&zT46V;|xWR8dZKT#SLlFJccYMh$QWqp|K=CR6>f3Gq5q zzx%Nk9>PX=0t4_8>icl(EsrU(=(qU@abX2&#WzqNrY}())%b(?aMZ&w#Ie{9x1c({ zf_kpp@h)m&-=q3#$Jtf}dY~pS6k~9ThsHP>`Pdb&V|VoblW{2O3%3Zh@_nd@-M~j`SuS+T~EfgxDM6dQEZJBsEO4+Z|-~g($LIjV;fAu_Lz@0zJYr2L#&S9;c)yB zwX(r~HYuKfTG2*OmraMga1ilutc5F46WD;t+$CIu_izvs7} zZ&n_KDykk>7e`?@PQ^%Eg3a(Ss-p|2lz)Vy@rDzJf8g|o9k|{Dzr{J&04M#G{A&O= z4Vj7U(1YsmRSd*~PW(sgM0^1w@ByyI&=1XTLWgl6@m-9@$SdYcI2&6KKa1MJofv?{ zSIECocAg75w}U=16Pb=vh?7tco^h^!;CR!ye#eO)Io7^vK1{(F!h8L(5&j0Xz%7^mqmJzi z)Ofi#0atlwXhzr3A3t~EyQl%aN7aV^HS=OGTt*y=UGbuG{by8-)c=Iz%W3L`n&_PC zrvEHd%`A4}LPyU|8k+H5oQ+3tCN}s_(_t#Ac(ypcg{t;DPV9ffob#UeTdwDzp1irhwCX=JECUG))RCJlng(X;zINyo4VIAT)$aQ1mR@j zw%8sQp*|>ka5jF3Juv1=^G7ww*p2u!&cMGr@tCj7AKNX%5UyWFP4o^nMf+>=uM2&? zHhYzUb%>uw4ZIbV%5&HP+ub!C4MVLk-Z2;J60b$Qw;kK!AFw%=p^a7UnYb-#+<_h% zy=mm&bUch&X{~R}3w=;2oPiqf8OH)t5gov)=*3!CiS_YYR7R`*-DIjZ4j~?lBXBvY zxILGg3!(STuhl826c*!ftpBa~^Zv;=h4=^#z#89~2|b3LiDx=-K58N_IUYa_Sd9Jf zM^q+zeecVV$C^SzD_o4K>Ya{nI@jNG;%`v3QtN?9VL0mfVb~FWi$gIF1Mw0n6Spx6 z@1ru(=An771IFn54{jvD853vVs`q3=pFW8Xy1Jo(Hjh=2ahWx`EpIp@5ypCGI1#E?1U{9?2$ozia7bA#M zop^^6Uq*d!encCielovLj7Lp07nPAbd>nWDME=z%=Ymq*^=I>~?t@zS9LH2t2a8de zc^)-^VhqK3LMY9bGP8#(KIuE?%+%u>FR-;bO0q6QfoI?Bw>byr)GtXtBK1dr;MffHvbDjzs(KP(4 zn->OPEb&s*3m4GFyVwHj*KqlMk%&Nb6pKpr)2L!Qh?B6?v3E_g1?y1PZ=%MFspVU^ z$4aE3C>mA$v8V|qU>jVCkKq9f!EaD2^ygnLv;{G! zerI4S+*I&x-Q>woQB%-Jk$#Ip^o7XsM@IIZzj?WwI$O~{p4ah z+=tEZBI;C?q2Bu$t9od3tY>aSVt3*Zj?bX>x)?RVw@}4ahN_v+`o>PE4^#|lOJeQ1GxSy+IR+4 zjGv(fuma3V`=Y)JNvI5M$6k0cz~%9+=sp+pLUbc@92cNcUV!TGFe(FoMRo8Hm6@Q% z=6+k$DH)DcaT+R9Gf`j0?Km2bptj%pIsbZKOrWXKL{ya@MLqZd`hKiBev8W3 zBUBB9^Z!!PM0#Nq4tL@l)Q4&r>NviJdfpXmo@8J}T0|RgvPC(t?f~u9ns2Vwjn&@rRDe?p~H52HJdT=c2lROzU z!#$|fA9C)0gj&fB)C#}E-q@&_iN~O7A_tYZ-=ntdEb6_RsAKyzl1Y!%u(>&({ctKb z+}I1xpgt52P!nm-AB(EPZm5Y4K%ML1*a6c}6WWH#=v$7rQSbY;a9Jy`Auh+Q7^a{9 zAuY`choELSALDQ#2IEE40AHX6@NZ?F?~W?68K|0g0d@aRsEK`rkr-&35797GttF!t z;K5j(|CKbf$M2(7T#8D0U~4mQUsOkKRB>)bW#TC6(|a0K&3CaKhP5#%AC39~E^yp{ zTF{%Q8oP`h&8U)wisxrkaRjtA$7Kj=rt48D+=4T3FX|KfGwPEX66&%B;RMvrj!mcu z-9Wt;5N4ilg<4=gRB@(;xkmUJE4iQ*zl5stcTfX(QQ!6|?M%^xp{dYT=URS+7N9AszZB+j=J)65P+>o~?;x$1`ia9%)Zpkerd>o*P*lnU+;$nw=4!NiXgcJ2yFdzCG5?$V^Xk zXJzqf?tFKq+s;VO%1Ta1aogd(6~w2Q1=?-mbF$Oh@K#ESo#oEvO_r3HkrR=ao|Bf{ zp`;Rtiw)C zX1ZzfNUrmGR&mItS6q|q?D_6g`if5_(P5d4NQZX#KOgtqjnobf>|mv(|J$cKv-6}R zIh!657ST!Z*@72bk8AF{ZYRbk&gYIh?WyF<^t4n~X2&zc-1NlkOt;(FwtwYe+~i5) zCr=tSGA=68c_gbt!Gyx;wc^`=y1C0P+U}aze;2}JNCcJs;^YHZJSj+!j~a(qrypRpKZ^Nf68sQaTeW1yPQpG zEtAQD_j=d`tzT+fT0^?dwj#qr{bbE}v^@gKbF zswA0tc-J4UcWB{@}lRxCy!O^S!33~Xk~l$-aDQ5e@*>F$?YXO zby{yPdC^SW_kM{zbo^wS4lMVJQ!D?DMYA_nt1~qSAO`g?DY?@!8c~BmMfW+33wHDJ$CJ zJossg<&9;=EE}*2CZTY&x-j|>AZd&up;Wpb` zas06N?DAjd?%y18X14Vcf7iURrYiqgAbHL)=XP2C67p2O4|m!I_!4& zjuYMuYk2ASfO@VjRil1c^Z&3v75g_;tCxlbU+`7$|d<6rC;AB)L|;j wV?(x%ZthywO{tLtg2bbM)<$)vpSNIx_oMac%==." msgstr "想要了解更多信息,请访问 。" @@ -1270,257 +1312,264 @@ msgid "path to output directory" msgstr "输出目录的路径" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "指定重新构建的文件列表。如果指定了 -a 参数,则忽略此项" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "通用选项" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "构建器(默认:html)" +msgid "builder to use (default: 'html')" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" + +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "写入所有文件(默认:只写入新文件和修改过的文件)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "不使用已保存的环境,始终读取全部文件" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "已缓存的环境和 doctree 文件路径(默认:OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "如果可能,用 N 个进程并行构建文档(如果指定为“auto”,则 N 为 CPU 数量)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "配置文件(conf.py)所在目录路径(默认:与 SOURCEDIR 相同)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "不应用配置文件中的配置,只让 -D 选项中的配置项生效。" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "覆盖配置文件中的配置项" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "向 HTML 模板传值" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "定义标签,把涉及标签 TAG 的“only”块纳入到构建中" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "挑刺模式,在引用了不存在的内容时发出警告" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "控制台输出选项" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "输出更详细的日志(甚至可能重复)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "不输出到 stdout,只在 stderr 上输出警告" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "无任何输出,甚至不会输出警告" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "着色输出(默认:自动检测)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "不着色输出(默认:自动检测)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "把警告(以及错误)信息写入给定的文件" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "把警告视为错误" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "与 -W 配合使用,在发出警告时继续运行" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "发生异常时显示完整回溯信息" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "发生异常时运行 Pdb" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "-a 选项和文件名不能同时使用" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "无法打开用于保存警告信息的文件 %r:%s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D 选项的参数必须是 name=value 形式" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A 选项的参数必须是 name=value 形式" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "自动插入模块中的文档字符串" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "自动运行 doctest 块中的测试代码片段" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "链接不同项目的 Sphinx 文档" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "编写在构建时可以选择显示、隐藏的“todo”条目" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "检查文档覆盖率" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "支持数学公式,渲染成 PNG 或 SVG 图像" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "支持数学公式,用 MathJax 在浏览器中渲染" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "基于配置值控制构建中包含哪些文档内容" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "支持链接到文档涉及的 Python 对象源码" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "创建 .nojekyll 文件,用于在 GitHub Pages 服务发布文档" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "请输入有效的路径名。" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "请输入文本。" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "请输入 %s 之一。" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "请输入“y”或“n”。" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "请输入文件后缀,例如:“.rst”或者“.txt”。" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "欢迎使用 Sphinx %s 快速配置工具。" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "请输入接下来各项设定的值(如果方括号中指定了默认值,直接\n按回车即可使用默认值)。" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "已选择根路径:%s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "输入文档的根路径。" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "文档的根路径" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "错误:选择的根路径中已存在 conf.py 文件。" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart 不会覆盖已有的 Sphinx 项目。" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "请输入新的根路径(或按回车退出)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "有两种方式来设置用于放置 Sphinx 输出的构建目录:\n一是在根路径下创建“_build”目录,二是在根路径下创建“source”\n和“build”两个独立的目录。" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "独立的源文件和构建目录(y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "这个选项将在根目录中创建两个新目录:\n“_templates”用于放置自定义 HTML 模板文件,“_static”用于自定义样\n式表及其他静态文件。您可以输入其他的前缀(比如“.”)代替下划线。" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "模板目录和静态目录的名称前缀" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "项目名称将会出现在文档的许多地方。" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "项目名称" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "作者名称" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1529,15 +1578,15 @@ msgid "" "just set both to the same value." msgstr "在 Sphinx 中,会区分“版本”和“发行版本”两个概念。同一版本可以\n有多个发行版本。例如,Python 版本可以是 2.5 或 3.0,而发行版\n本则是 2.5.1 或 3.0a1。如果你不需要这样的双重版本结构,请把这\n两个选项设置为相同值。" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "项目版本" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "项目发行版本" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1547,21 +1596,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "如果用英语以外的语言编写文档,\n你可以在此按语言代码选择语种。\nSphinx 会把内置文本翻译成相应语言的版本。\n\n支持的语言代码列表见:\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language。" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "项目语种" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "源文件的文件名后缀。一般是“.txt”或“.rst”。只有此后缀的文件才会\n被视为文档的源文件。" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "源文件后缀" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1569,91 +1618,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "有一种特殊的文档被视作“目录树”的树顶节点,即文档层级结构的\n根。通常情况下,这个文档是“index”,但是如果你的“index”文档\n使用了自定义模板,你也可以使用其它文件名。" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "主文档文件名(不含后缀)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "错误:选择的根目录下已存在主文档文件 %s。" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart 不会覆盖已有的文件。" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "请输入新文件名,若要重命名现有文件请按回车" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "指出下列 Sphinx 扩展中,需要启用的有哪些:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "注意:imgmath 和 mathjax 不能同时启用。已取消选择 imgmath。" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "生成 Makefile 和 Windows 批处理文件,可以直接像“make html”这样\n运行,而不需要直接调用 sphinx-build。" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "是否创建 Makefile?(y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "是否创建 Windows 批处理文件?(y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "正在创建文件 %s。" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "文件 %s 已存在,已跳过。" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "完成:已创建初始目录结构。" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "你现在可以填写主文档文件 %s 然后创建其他文档源文件了。 " -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "像这样用 Makefile 构建文档:\n  make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "像这样用 sphinx-build 命令构建文档:\n  sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "此处的“builder”代指支持的构建器名称,比如 html、latex 或 linkcheck。" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1663,135 +1712,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\n生成 Sphinx 项目的必需文件。\n\nsphinx-quickstart 是一个交互式工具,询问一些关于项目的问题,生成\n完整的文档目录和用于 sphinx-build 的示例 Makefile。\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "静默模式" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "项目根目录" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "目录结构选项" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "如果指定了此选项,将分别建立源文件目录和构建目录" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "如果指定了此选项,在源文件目录下创建构建目录" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "用句点替代“ _templates”等文件夹名称中的下划线。" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "项目基本参数" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "项目名称" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "作者名称" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "项目版本" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "项目发行版本" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "项目语种" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "源文件后缀" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "主文档名" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "启用 ePub 支持" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "扩展程序选项" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "启用 %s 扩展" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "启用多个扩展" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "创建 Makefile 和批处理文件" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "创建 Makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "不创建 Makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "创建批处理文件" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "不创建批处理文件" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat 采用 Sphinx 的 make 模式" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat 不采用 Sphinx 的 make 模式" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "项目模板" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "放置模板文件的模板目录" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "定义一个模板变量" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "指定了“quiet”,但是没有指定“project”和“author”。" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "错误:指定的路径不是一个目录,或是 Sphinx 文件已存在。" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart 只会在空目录中生成文件。请指定一个新的根路径。" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "无效模板变量:%s" @@ -1842,47 +1891,47 @@ msgstr "不能在不连续的“lines”上使用“lineno-match”选项" msgid "Line spec %r: no lines pulled from include file %r" msgstr "指定的行 %r:未能从包含文件 %r 中拉取指定的行" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "目录树 glob 规则 %r 未能匹配到文档" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "目录树中引用了已排除的文档 %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "目录树中引用的文档 %r 不存在" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "目录树中存在重复的条目:%s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "节作者: " -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "模块作者: " -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "代码作者: " -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "作者: " -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr ".. acks 的内容不是列表" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr ".. hlist 的内容不是列表" @@ -1897,82 +1946,10 @@ msgstr "csv-table 指令的“:file”选项现在会将绝对路径视为源文 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "重复的 C 声明,已经在 %s:%s 处声明。\n声明为“.. c:%s:: %s”。" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s(C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "参数" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "返回值" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "返回" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "返回类型" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "成员" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "变量" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "函数" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "宏" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "结构体" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "联合体" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "枚举" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "枚举成员" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "类型" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "函数参数" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "在 %s 版本加入" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1984,346 +1961,423 @@ msgstr "在 %s 版本发生变更" msgid "Deprecated since version %s" msgstr "自 %s 版本弃用" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "重复的引文 %s,另一引文出现在 %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "引文 [%s] 没有被引用过。" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "重复的 C++ 声明,已经在 %s:%s 处声明。\n声明为“.. cpp:%s:: %s”。" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "模板参数" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s(C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "抛出" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "类" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "概念" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "模板参数" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (内置函数)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s()(类)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s(全局变量或常量)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s(%s 属性)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "参数" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "抛出" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "返回" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "返回类型" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s(模块)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "函数" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "类" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "属性" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "模块" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "重复的 %s描述 %s,其他的 %s 描述出现在 %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "重复的公式标签 %s,另一公式出现在 %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "无效的 math_eqref_format:%r" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s(指令)" + +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s:(指令选项)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s(角色)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "指令" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "指令-选项" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "角色" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "重复的 %s %s 描述,另一描述出现在 %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s(C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "重复的 C 声明,已经在 %s:%s 处声明。\n声明为“.. c:%s:: %s”。" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "参数" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "返回值" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "成员" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "变量" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "抛出" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "宏" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "结构体" + +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "联合体" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "枚举" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "枚举成员" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "类型" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "函数参数" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "模板参数" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s(C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "重复的 C++ 声明,已经在 %s:%s 处声明。\n声明为“.. cpp:%s:: %s”。" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "概念" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "模板参数" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s()(在 %s 模块中)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s()(在 %s 模块中)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s(内置变量)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s(内置类)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s(%s 中的类)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s()(%s 类方法)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s()(%s 静态方法)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s(%s 属性)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "已弃用" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "异常" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "托管属性" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(已弃用)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s(指令)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s:(指令选项)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s(角色)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "指令" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "指令-选项" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "角色" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "变量" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "重复的 %s %s 描述,另一描述出现在 %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "抛出" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "环境变量; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s命令行选项" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "命令行选项" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "术语词汇前必须有空行" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "术语词汇不能用空行分隔" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "术语词汇格式不正确,请检查缩进" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "术语词汇" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "语法记号" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "引用标签" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "环境变量" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "程序选项" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "文档" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "模块索引" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜索页面" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重复的标签 %s,另一标签出现在 %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "重复的 %s 描述 %s,另一描述出现在 %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已禁用,忽略 :numref:。" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "无法创建交叉引用。未指定题图数字:%s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "链接没有标题:%s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "无效的 numfig_format:%s(%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "无效的 numfig_format:%s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "标签未定义:%r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "无法创建交叉引用,缺少标题或图题:%r" @@ -2340,35 +2394,35 @@ msgstr "配置发生了变化" msgid "extensions changed" msgstr "扩展发生了变化" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "构建环境版本与当前环境不符" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "源文件目录发生了变化" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "本环境与选择的构建器不兼容,请选择其他的文档树目录。" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "无法在 %s 中扫描文档:%r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "未注册的域 %r" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "文档没有加入到任何目录树中" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "目录树存在自引用,已忽略。" @@ -2392,39 +2446,39 @@ msgstr "未知的索引条目类型 %r" msgid "Symbols" msgstr "符号" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "在文档树中检测到循环引用,已忽略:%s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "目录树引用的文档 %r 缺少标题:不会生成链接" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "目录树引用了未包含的文档 %r" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "无法读取图像文件:%s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "无法读取图像文件 %s:%s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "无法读取下载文件:%s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "已经给 %s 分配了章节编号(嵌套的带编号文档树?)" @@ -2434,7 +2488,7 @@ msgstr "已经给 %s 分配了章节编号(嵌套的带编号文档树?)" msgid "Would create file %s." msgstr "将会创建文件 %s。" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2446,149 +2500,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n在 中递归查找 Python 模块和包,然后在 中为每个使用了\nautomodule 指令的包创建一个 reST 文件。\n\n 可以排除生成符合规则的文件/目录的文档。\n\n提示:本脚本默认不会覆盖已有文件。" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "指定模块的路径,用于生成该模块的文档" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "以 fnmatch 风格的文件/目录规则,不生成与该规则匹配的文档" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "存放输出内容的目录" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "在目录树中展示子模块的最大深度(默认:4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "覆盖已有文件" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "遵循符号链接。配合 collective.recipe.omelette 使用尤其奏效。" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "运行脚本,但不创建文件" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "给模块创建各自的文档页" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "包含“_private”模块" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "目录的文件名(默认:modules)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "不创建目录文件" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "不创建模块/包的标题(比如当 docstring 中已经有标题时,可以使用这个选项)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "把模块文档放置在子模块文档之前" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "根据 PEP-0420 隐式命名空间规范解释模块路径" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "文件后缀(默认:rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "用 sphinx-quickstart 生成完整项目" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "当指定了 --full 选项,把 module_path 附加到 sys.path" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "项目名称(默认:根模块名)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "项目作者,指定了 --full 选项时使用" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "项目版本,指定了 --full 选项时使用" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "项目发行版本,指定了 --full 选项时使用,默认为 --doc-version 的值" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "扩展选项" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s 不是一个目录。" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "为“%s”一节增加标签“%s”" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "无效的正则表达式 %r 出现在 %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "已完成源文件的覆盖率测试,结果保存在 %(outdir)s/python.txt 中,请查阅。" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "coverage_c_regexes 中有无效的正则表达式 %r" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "缺少文档的 C API:%s [%s] 在 %s 文件中" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "无法导入模块 %s:%s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "缺少文档的 Python 函数: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "缺少文档的 Python 类:%s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "缺少文档的 Python 方法:%s :: %s :: %s" @@ -2612,24 +2666,24 @@ msgstr "无效的 pyversion 选项“%s”" msgid "invalid TestCode type" msgstr "无效的 TestCode 类型" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "已完成源文件的文档测试,结果保存在 %(outdir)s/output.txt 中,请查阅。" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "块 %s 没有代码或没有输出,该块出现在 %s:%s" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "已忽略无效的文档代码:%r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最长读取耗时 =======================" @@ -2640,32 +2694,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "可以用 extlink 替换硬编码链接 %r(请尝试改用 %r)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "不能同时指定 Graphviz 指令的内容和文件名参数" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部 Graphviz 文件 %r 不存在或读取失败" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "已忽略无内容的“graphviz”指令。" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "无法运行 dot 命令 %r(为输出 graphviz 所必需),请检查 graphviz_dot 的设置" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2675,7 +2729,7 @@ msgid "" "%r" msgstr "dot 发生错误并退出:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2685,27 +2739,27 @@ msgid "" "%r" msgstr "dot 未生成输出文件:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format 的值只能是“png”或“svg”,但现在给定的是 %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "dot 代码 %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[图表:%s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[图表]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2713,7 +2767,7 @@ msgid "" "Traceback: %s" msgstr "无法运行图像转换命令 %r。“sphinx.ext.imgconverter”默认依赖于 ImageMagick。请确保已安装了它,或者可以自定义“image_converter”选项,设置一个其他的转换命令。\n\n回溯信息:%s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2723,173 +2777,178 @@ msgid "" "%r" msgstr "格式转换发生错误并退出:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "无法运行格式转换命令 %r,请检查 image_converter 的设置" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "无法运行 LaTeX 命令 %r (显示数学公式所必需),请检查 imgmath_latex 的设置" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "无法运行 %s 命令 %r (显示数学公式所必需),请检查 imgmath_%s 的设置" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "显示 LaTeX %r:%s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "内联 LaTeX %r:%s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx 清单被移动过:%s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "正在从 %s 加载 intersphinx 清单……" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "在读取这些清单时遇到了一些问题,但已找到可用替代:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "无法访问任何清单,问题如下:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(在 %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "未找到用于外部交叉引用的清单:%s" +msgid "inventory for external cross-reference not found: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "未找到用于外部交叉引用的角色:%s" +msgid "invalid external cross-reference suffix: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "未找到外部 %s:%s 引用目标:%s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 标识符 %r 不是字符串,已忽略" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "无法读取 intersphinx_mapping[%s],已忽略:%r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[源代码]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "待处理" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "发现待处理条目:%s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> 见 %s,第 %d 行。)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "原始条目" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "正在高亮模块代码……" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[文档]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "模块代码" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s 源代码

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "概览:模块代码" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

代码可用的所有模块

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "无效的 member-order 选项值:%s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "无效的 class-doc-from 选项值:%s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "无效的 auto%s 签名(%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "在格式化 %s 的参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc:无法确定是否生成 %s.%s (%r) 的文档,抛出了下列异常:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2897,112 +2956,112 @@ msgid "" "explicit module name)" msgstr "无法判断导入哪个模块以自动生成文档 %r(尝试在文档中使用“module”或“currentmodule”指令,或者显式给定模块名)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "检测到仿制的对象:%r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "在格式化 %s 的签名时发生错误:%s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 名中的“::”无意义" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule %s 给定了函数签名参数或返回类型标注" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ 应是一个字符串列表,而不是 %r (出现在模块 %s 中) -- 已忽略__all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr ":members: 选项中涉及的属性不存在:模块 %s,属性%s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "无法获取函数 %s 的签名:%s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "无法获取构造函数 %s 的签名:%s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "指定了 %s 属性,但对象 %s 缺少该属性" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "%s 的别名" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s) 的别名" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "无法获取方法 %s 的签名:%s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s 上有无效的 __slots__,已忽略。" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "无法解析 %r 的默认参数值:%s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "无法更新 %r 的签名:未找到参数:%s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "无法解析 %r 的类型注释:%s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "自动摘要引用了排除的文档 %r,已忽略。" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "自动摘要:无法找到存根文件 %r。请检查你的 autosummary_generate 设置。" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "在自动摘要中指定标题时也需要指定 :toctree: 选项,已忽略。" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3010,26 +3069,26 @@ msgid "" "%s" msgstr "自动摘要:无法导入 %s。\n可能原因:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "无法解析名称 %s" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "无法导入对象 %s" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate 配置项:文件 %s 不存在" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "自动摘要内部会生成 .rst 文件,但是 source_suffix 中未包含 .rst,已跳过。" +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3102,99 +3161,99 @@ msgid "" "%(default)s)" msgstr "仅生成模块中 __all__ 属性成员的文档。(默认值:%(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "关键字参数" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "示例" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "示例" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "备注" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "其他参数" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "接受" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "引用" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "生成器" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "无效的值集合(缺少右括号):%s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "无效的值集合(缺少左括号):%s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "异常的字符串字面量(缺少右引号):%s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "异常的字符串字面量(缺少左引号):%s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "小心" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "危险" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "错误" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "备注" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "参见" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "小技巧" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "警告" @@ -3226,7 +3285,7 @@ msgid "Table of Contents" msgstr "目录" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "搜索" @@ -3359,34 +3418,22 @@ msgstr "下一主题" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "请激活 JavaScript 以开启搜索功能。" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "当搜索多个关键词时,只会显示同时包含所有关键词的内容。" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "搜索" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "搜索结果" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "您的搜索没有匹配到文档。请确保关键词拼写正确,并且选择了合适的分类。" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "快速搜索" @@ -3423,20 +3470,30 @@ msgstr "C API 的变更" msgid "Other changes" msgstr "其他变更" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "搜索结果" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "您的搜索没有匹配到文档。请确保关键词拼写正确,并且选择了合适的分类。" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "搜索完成,匹配到 ${resultCount} 页。" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "正在搜索中" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "正在准备搜索……" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ",在 " @@ -3457,30 +3514,30 @@ msgstr "展开边栏" msgid "Contents" msgstr "目录" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "索引页使用了 4 列布局,可能是你所用的扩展出现了 Bug:%r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "脚注 [%s] 没有被引用过。" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "脚注 [#] 没有被引用过。" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3492,13 +3549,13 @@ msgid "" "{1}" msgstr "译文中的引用与原文不一致。原文中为:{0},译文中为:{1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "译文中的引文引用与原文不一致。原文中为:{0},译文中为:{1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3525,90 +3582,90 @@ msgstr "未找到 %s:%s 的引用目标: %s" msgid "%r reference target not found: %s" msgstr "未找到 %r 的引用目标:%s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "无法拉取远程图像:%s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "无法拉取远程图像:%s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "未知的图像格式:%s……" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "源码中存在编码无法识别的字符,已经替换为“?”:%r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "已跳过" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "失败" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "%s 域中的问题:字段应采用“%s”角色,但域中并不包含该角色。" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "未知的指令或角色名称:%s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "未知节点类型:%r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "读取时发生错误:%s,%s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "写入时发生错误:%s,%s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "无效的日期格式。如果你想直接输出日期字符串,请用单引号包裹该字符串:%s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "%r 不再适用于索引款目(源自 %r 款目)。请使用“pair: %s”作为替代。" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "目录树引用的文件 %r 不存在" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 指令的表达式求值时抛出异常:%s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "未找到默认角色 %s" @@ -3631,27 +3688,27 @@ msgstr "没有给 %s 节点分配 ID" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "无法获取图像尺寸,已忽略 :scale: 选项。" @@ -3668,13 +3725,13 @@ msgstr ":mathdepth: 值过大,已忽略。" msgid "document title is not a single Text node" msgstr "文档标题不是一个单纯文本节点" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "在节、话题、表格、警示或边栏以外的位置发现标题节点" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "脚注" @@ -3693,20 +3750,20 @@ msgstr "无效的量纲单位 %s,已忽略。" msgid "unknown index entry type %s found" msgstr "发现未知的索引条目类型 %s" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[图片: %s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[图片]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "在图示之外发现了图题。" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "未实现的节点类型:%r" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index 12e66b252fe74a3082f2f99f03adb533845ba9f6..131d174846bdbb93e5a5e63d9858f7ac6bf60368 100644 GIT binary patch delta 30 lcmey${FQk^Gp~uRfr+l6iGq=_m67?z2?>m>CVB>33;>Xj2h#um delta 30 lcmey${FQk^Gq16(frYN2xq_jYm5IT|2?>m>MtX)^3;>YZ2h{)o diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 9a7b9f4595e..74aad201780 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://app.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 3ac67e1629a23bf6e7b9f750f742a6d5231f7174..4a4c5d3254a2706c0a514618ad34a042ff18c484 100644 GIT binary patch delta 30 lcmZo+X9 delta 30 lcmZo+X#LOvs_k)9zJ0|0mN2Lu2B diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index e949589cfe0..40634ca6114 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2023 ORGANIZATION +# Copyright (C) 2024 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Taiwan) (Big5) (http://app.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: zh_TW.Big5\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -37,104 +37,104 @@ msgstr "" msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,70 +155,75 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" +msgid "No such config value: %r" msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,290 +231,327 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." msgstr "" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." msgstr "" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:125 #, python-format -msgid "theme %r doesn't have \"theme\" setting" +msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:140 #, python-format -msgid "theme %r doesn't have \"inherit\" setting" +msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:206 #, python-format -msgid "no theme named %r found, inherited by %r" +msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:226 #, python-format -msgid "setting %s.%s occurs in none of the searched theme configs" +msgid "no theme named %r found (missing theme.toml?)" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:259 #, python-format -msgid "unsupported theme option %r given" +msgid "The %r theme has circular inheritance" msgstr "" -#: sphinx/theming.py:216 +#: sphinx/theming.py:262 #, python-format -msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" msgstr "" -#: sphinx/theming.py:230 +#: sphinx/theming.py:269 #, python-format -msgid "no theme named %r found (missing theme.conf?)" +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" msgstr "" #: sphinx/builders/__init__.py:183 @@ -526,8 +568,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "" @@ -576,7 +618,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "" @@ -585,50 +627,50 @@ msgstr "" msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" msgstr "" @@ -637,36 +679,36 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "" -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "" @@ -674,470 +716,470 @@ msgstr "" msgid "writing content.opf file..." msgstr "" -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "" -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "" -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1123 +#: sphinx/builders/html/__init__.py:1121 #, 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:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" msgstr "" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "" @@ -1152,15 +1194,15 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" msgstr "" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" msgstr "" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" msgstr "" @@ -1219,8 +1261,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:477 -#: sphinx/ext/apidoc.py:319 sphinx/ext/autosummary/generate.py:689 +#: sphinx/cmd/build.py:117 sphinx/cmd/quickstart.py:474 +#: sphinx/ext/apidoc.py:317 sphinx/ext/autosummary/generate.py:689 msgid "For more information, visit ." msgstr "" @@ -1252,7 +1294,9 @@ msgid "path to output directory" msgstr "" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" msgstr "" #: sphinx/cmd/build.py:146 @@ -1260,249 +1304,254 @@ msgid "general options" msgstr "" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" +msgid "builder to use (default: 'html')" msgstr "" -#: sphinx/cmd/build.py:151 -msgid "write all files (default: only write new and changed files)" +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" msgstr "" -#: sphinx/cmd/build.py:154 -msgid "don't use a saved environment, always read all files" +#: sphinx/cmd/build.py:155 +msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" +#: sphinx/cmd/build.py:158 +msgid "don't use a saved environment, always read all files" msgstr "" #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" +msgid "path options" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" msgstr "" #: sphinx/cmd/build.py:171 -msgid "override a setting in configuration file" +msgid "use no configuration file, only use settings from -D options" msgstr "" #: sphinx/cmd/build.py:174 -msgid "pass a value into HTML templates" +msgid "override a setting in configuration file" msgstr "" #: sphinx/cmd/build.py:177 -msgid "define tag: include \"only\" blocks with TAG" +msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" +#: sphinx/cmd/build.py:180 +msgid "define tag: include \"only\" blocks with TAG" msgstr "" #: sphinx/cmd/build.py:182 -msgid "console output options" +msgid "nit-picky mode: warn about all missing references" msgstr "" #: sphinx/cmd/build.py:184 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1511,15 +1560,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1529,21 +1578,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1551,91 +1600,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1645,135 +1694,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1824,47 +1873,47 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr "" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr "" @@ -1879,433 +1928,438 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 +#: sphinx/domains/changeset.py:23 #, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." +msgid "Added in version %s" msgstr "" -#: sphinx/domains/c.py:3257 +#: sphinx/domains/changeset.py:24 #, python-format -msgid "%s (C %s)" +msgid "Changed in version %s" msgstr "" -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" +#: sphinx/domains/changeset.py:25 +#, python-format +msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" msgstr "" -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" +#: sphinx/domains/citation.py:71 +#, python-format +msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" +#: sphinx/domains/citation.py:82 +#, python-format +msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" +#: sphinx/domains/javascript.py:165 +#, python-format +msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/c.py:3731 -msgid "variable" +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 +#, python-format +msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" +#: sphinx/domains/javascript.py:168 +#, python-format +msgid "%s() (class)" msgstr "" -#: sphinx/domains/c.py:3733 -msgid "macro" +#: sphinx/domains/javascript.py:170 +#, python-format +msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/c.py:3734 -msgid "struct" +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 +#, python-format +msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" +#: sphinx/domains/javascript.py:255 +msgid "Arguments" msgstr "" -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" msgstr "" -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" +#: sphinx/domains/javascript.py:331 +#, python-format +msgid "%s (module)" msgstr "" -#: sphinx/domains/changeset.py:23 -#, python-format -msgid "New in version %s" +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" msgstr "" -#: sphinx/domains/changeset.py:24 -#, python-format -msgid "Changed in version %s" +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 +msgid "method" msgstr "" -#: sphinx/domains/changeset.py:25 -#, python-format -msgid "Deprecated since version %s" +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 +msgid "data" msgstr "" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:404 #, python-format -msgid "duplicate citation %s, other instance in %s" +msgid "duplicate %s description of %s, other %s in %s" msgstr "" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/math.py:63 #, python-format -msgid "Citation [%s] is not referenced." +msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." +msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" msgstr "" -#: sphinx/domains/cpp.py:7340 +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 #, python-format -msgid "%s (C++ %s)" +msgid ":%s: (directive option)" msgstr "" -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" msgstr "" -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" +#: sphinx/domains/rst.py:223 +msgid "directive" msgstr "" -#: sphinx/domains/cpp.py:7911 -msgid "concept" +#: sphinx/domains/rst.py:224 +msgid "directive-option" msgstr "" -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" +#: sphinx/domains/rst.py:225 +msgid "role" msgstr "" -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/rst.py:247 #, python-format -msgid "%s() (built-in function)" +msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/c/__init__.py:146 #, python-format -msgid "%s() (%s method)" +msgid "%s (C %s)" msgstr "" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 #, python-format -msgid "%s() (class)" +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/javascript.py:169 -#, python-format -msgid "%s (global variable or constant)" +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" msgstr "" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 -#, python-format -msgid "%s (%s attribute)" +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" msgstr "" -#: sphinx/domains/javascript.py:253 -msgid "Arguments" +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" msgstr "" -#: sphinx/domains/javascript.py:329 -#, python-format -msgid "%s (module)" +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 -msgid "method" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" msgstr "" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 -msgid "data" +#: sphinx/domains/c/__init__.py:624 +msgid "struct" msgstr "" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 -msgid "attribute" +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" msgstr "" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 -msgid "module" +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" msgstr "" -#: sphinx/domains/javascript.py:401 -#, python-format -msgid "duplicate %s description of %s, other %s in %s" +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" msgstr "" -#: sphinx/domains/math.py:61 +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp/__init__.py:185 #, python-format -msgid "duplicate label of equation %s, other instance in %s" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 #, python-format -msgid "Invalid math_eqref_format: %r" +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" msgstr "" -#: sphinx/domains/python.py:691 -msgid "Raises" +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" msgstr "" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" msgstr "" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr "" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "" - -#: sphinx/domains/rst.py:220 -msgid "role" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" msgstr "" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" msgstr "" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "" @@ -2322,35 +2376,35 @@ msgstr "" msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "" @@ -2374,39 +2428,39 @@ msgstr "" msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2416,7 +2470,7 @@ msgstr "" msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2428,149 +2482,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "" @@ -2594,24 +2648,24 @@ msgstr "" msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "" @@ -2622,32 +2676,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" msgstr "" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2657,7 +2711,7 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2667,27 +2721,27 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2695,7 +2749,7 @@ msgid "" "Traceback: %s" msgstr "" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2705,173 +2759,178 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" +msgid "inventory for external cross-reference not found: %r" msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" +msgid "invalid external cross-reference suffix: %r" msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "" -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2879,112 +2938,112 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -2992,25 +3051,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." msgstr "" #: sphinx/ext/autosummary/generate.py:200 @@ -3084,99 +3143,99 @@ msgid "" "%(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "" @@ -3208,7 +3267,7 @@ msgid "Table of Contents" msgstr "" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "" @@ -3341,34 +3400,22 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "" @@ -3405,20 +3452,30 @@ msgstr "" msgid "Other changes" msgstr "" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr "" @@ -3439,30 +3496,30 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" msgstr "" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" msgstr "" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3474,13 +3531,13 @@ msgid "" "{1}" msgstr "" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3507,90 +3564,90 @@ msgstr "" msgid "%r reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" msgstr "" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." msgstr "" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "" @@ -3613,27 +3670,27 @@ msgstr "" msgid "Link to this term" msgstr "" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" msgstr "" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" msgstr "" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" msgstr "" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" msgstr "" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" msgstr "" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3650,13 +3707,13 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" @@ -3675,20 +3732,20 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index cebee7dc8f1..8551239f3ab 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -2,7 +2,7 @@ Documentation.addTranslations({ "locale": "zh_Hant_TW", "messages": { "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", - "© %(copyright_prefix)s %(copyright)s.": "", + "© %(copyright_prefix)s %(copyright)s.": "© %(copyright_prefix)s %(copyright)s.", ", in ": "\uff0c\u65bc ", "About these documents": "\u95dc\u65bc\u9019\u4e9b\u6587\u4ef6", "Automatically generated list of changes in version %(version)s": "\u81ea\u52d5\u7522\u751f\u7684 %(version)s \u7248\u8b8a\u66f4\u5217\u8868", diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 7dadab406701d53f1f801a10c2bde71d9f10aecb..d776f36c5319f24a80e149dfcb16778c7509308c 100644 GIT binary patch delta 13906 zcmb8#cX(A*+V}B&0!e@*lqB>7c7RXt|UJ7*|uhfB!cq*0L74ENd|4a?b~?Eb9iBC%3h%zKjoRXIUQl z&&OF-Dh9Q;tPq@y{FsLD2(Z3UOWiH=nuncn2c3%Hfr9b7{vRnJQ}+3C9Huy)QxXpW&9Lv zyo#DAsIwlltVq;E&CtenI2=cy=E=uic+%;+x|s1=sQFuAP2O+yq)`h;V=&G@1@sg) z!sk#aEWo<>jWhlm9;V;0D=){-QGr!^z_J1{614@<*an+Bj>ky)x#+D&V;7D7cmZo- zI2#m-EwDBAK)rZ6YO7Y@I=qCFFs-{~@owu~)RqMIu&nCX0@+ooH`+J{m9Y(uuk;}Q zO7U(6w8zJhIjpnJ4gNhXt10~|j-5~eCnC34IjHAeM-|<9jKYtQ-LmeYYNjpwpp1-0 z1(tx+t2MKi*F?6H0ZniLwKtz&9lVD1F`&13QDf8!THz4vjC#Qm$K4o7{{y5Rt?yB_ z5YxvLbuS!7e=@3;3cNG|Xq?AN_%15dpE~}8dQsSe=D|srK>q+%!5V!nt1&i4e;kZl zvWBC!>Uq@Z_!?DXE&G{F^h0INJA?*D(uzkF-AdG!Y(_=67nRD>$aY)zQN`4mg3*hn zA&a#3qH5(1#$qGht``o+mY9moaRaJY&temu|9dnVFwkJ2xzHEYpMw;*wGkWQM;M6r zF$&8)WUfb}wkQE@%)yGd*}1+GwFO0}E&dg?&>+&{r}JN*23fWmU;-v%44y;X_&t`# zfI$T4;z864dki)!orrqjDyRQE`qMv$Dz=M`-=Z>h7d3Bp_Vp_7w}#Qsx$ic#EG5=M zs2e=E6c^!RSoIN8T&a%BP+OFbWAF$nGvSX~);R2dRWJ|vT3cJN8h(g6<|XJ=geu8! zsDYu_+_5|Afk#o-lduxbMrCY1Dih~09gC4VvqlX!3)+YZ;8hI5!_N2{*pmKx!^wYB z8rBFiaWls_)OZhUgHy38Za{6tP8^GSQK=3ZX=GpH3_#>RLBRoy}HmX(4-uq__Kfp`t$u>EM0iN_t6VNJ$&IG)Bi z^gqEc9Kn87#;IN!<7v!71#k(q(rc)i_yv{1iYzx2Yoq!tP^aPnY=jA@i5H@tTaN*_ z4Yj~ssCf^f7I+SIn!NAP(B6E4N==b-;Rn>-{(^dO1QnWV4xp1$ML9%m*O;BgZi1^B25aUCu-%xu_b#v z3st0BCzur#paMLJTKNa4>z|`CbQ4LcRc@kci2WZ=BZh%P*bcwNR#-E^6iI)Kr9T}X z!IyA4-opBrm}rjOJk*D43u;TwqK((kjlq*l(Ry$Q{fjulOCuu5q-X|4(?5=y_*-0z z057=`Dt8(zbX*euy>Ng{5bKMlRiWd%&(VGZC+ zJcHWnE>n3q_QLYm7j1k9Kfr0IjP>MbXbZDYd%ql&iS4Ktzl9H=-{U6rJ+LDE^^cSP zKpI;Z@W-8~^ScjKBwwIT#Z6Q|{uIP{3`XtYhqw$|rwY%~=Qr(eH(N z-(aUdGL8IeAd!Izn1b3H4=%@3*b)b)n{)pJYNFk!B0GYS_ztQ#Z=eFVGWZDz)vyje zj9PIr2IF*0z`0%;iuem`i$PRYd+d%BzLkY>_)i>+0W(Zdj==u(=b{361C{DeP#FvL zm>=6sQCpLU3Sc%yz1*ciXZMp!$O|6zC3gQHO^n~5scXR#OV zLp~YS9aQFqWSL*tp2P_HFQ5WGgcPaQx=5oF12<7M&@|hmC>F!$cSUW{P}BJ<6SHDAggRG{Nf0j$Jo_!??~XXmp2TG34g zBJg*|h^I`Ic1Av4)(QTy+LAS>%u>Q5jzCrJ=}PMFnu$@jKL>)>&YVR~%~ZMqnqLfchS+Lk@sdh)V5a3r%sQp^je; z>dUzsweka~t$Y`Ip|^yFB8pjLR@NSsni1Fo=cA6-8Po$Ii_JtsQG5G1swQ5*{4B0f(mRBHpM(tu^z)#_#JAVddu|zV*ekep*>AQ?coYks`61UI)ly8wZcr?5=YUW z;CKMF6~QabpJ-#T5&d20kME&s6%x{Bk@`>j+OIzDS1|K@laBN_h~wZb1! zD+tRqwb2I^_;}P7Jc*4l52Nr1D)7&+8CH14InIs==+y(OX!OMc7>xHZMh`q|KDq6% z0sU#Hl&(T$ssI(>`=|hKJL8p~Gxx`!GB6lbbi+|wJsl@{ABPzJprOR~Ulc zfc56Z;i#1~L}la=RD|PEnOWqFUqIEyWz@vwH<;rUf*tAiKxJYUYQ=dNiZ5by+=mM6 zoauY5Pia(P;5O<;*9)c=!m%d(uBZ$Q$2c5~TH#96N?yhQd=r!K9juM*Hk#BAMqSUq zAe@O!@M-L#^S^_J%|Idc#DKq=BI=J3^oODXOGOo_7nOl+PXC`6Pyc7^j*q-(GLef) z@i|lgm#`v!hRSpi#_0Tqy<|QJ-7%7W25Mz1Q7`r(+isn8oUqBH{71*8n@wuR;yCV` zj&<=O>in1D1g!qD`Nbs*JJ8>b-u5)Ua4v*zF&~uvs1zonQlEpmZy{>$j-oR04mQLe zoqnBHOlEqa0!T%FT!IQ@6}H49s0Eh1LjHAQ<*jC~VjKsdiY49YFTfh~x1oyeIO@e` zo&Hr+rtaV)7_iMOBpy4{pNU;@FX~Hp9rc~4vE6GPthe2)s14TQ!f3}Cr~sFt0@{YE ziDS<7%cx9!j|w0--xO_q$By`siyFcwu*nX-et!JHvy&sp{Z+iX`QUKj7J3+Hx0kfx zHq@yI+h>ZWA*yI%a52VXJNy!r(y;yJ7mi-2ty+N%@HFbQ6rzsxJ&eXcpIMN%B@L~x z5BA52SP!?OKc2-$M%5V>tb8sD%u}IyecH$+^gJ^jdk& z4KJZqxCck#XQ&sqJz$PiUsQhqD&^}i4EH(xH=O>LsAG2r_5E-iG__S5b!@w$0!hYb zo&R|>E;FzlRUGpQOsaNb1^S0D5Ko~}ectgWR1roWGC%JJ;#m6WSX1|*0{$AC;15^} zBMzIN4ec?P_gjCVk%5(t@UI~1V`DspnxF(#z4x8*jz>*ROmK9g_BIu@C38^6Z9ZyC z_Miedh1&a4tcz8Sk^e3NLtRq;=# zJ#O%KlaV19ML!!A$U1C*Z(|$$&be;CVFK@sss-;r8cJ~n*1>J4)Sp7F@N?{jS5U>+ z;H*h;dsM#%>b_y97mvYlxDw;=D(b%a=gfU=v7w94GDhqCkAKq~tN9qfjr*MbA*Wx2 zO8E_}j^)prFI*ke#E;+=OhOggfVWHrN202KA+pQXIvkHR-!^|yWn*1kSwlm6whte} zQ`itAFYvcJ_CmdA2Wsz*qt5X?R6t=DO}`nc-`jDtW4hx4)K+f5int%UE3#uWY`l*d z81WDD?|~~YnEuD801F-e<&68kV`?E3TXMY{DudHd&v~5dUTjK#2WlbjqwXt0?=TuS zoPnP2nhX80J>x^L3VXExb>3J1(@dQ2cmQJ@=`ZQFn zy!RgYkEapvzA3T^s4Cuwn&<>-?>}<--=Vf7@B_1w>8O>?M@{^UGyan^Ug?s#UK2yP z-pH||Gyc#e@~_myGtdZgFbuakHylQ-?5yKOtU~_-r+>xq8Y+n$9-f1>5jTS1eLMTsD;dMuCK+J z^tWMajQrSSVhD2lEN>!>81{HEDv5{nY%G+#1t#GUwBXh zPcExbnY)4dVHNj*{|U8cb-yxSvM#6; zW}xA}M~h4# zmr*ONR&2JWH&&pZfR!)>{V@we@Gs8wB^X5iSxm&g;ynBvTj9JClgWLkz=}%9e{~vn z7|@CV-KW*yeX7t1d2TPo^BSFt6Q`1>86NI8>lxFcIfrL;UtW`H!Iy_=`zRTdYfe zAnI7U9rs~*`oCfX`u%D?MDAZr5${K>^swVu)C%86J?HP|Dm!+yQ1=Z)%{vN};isJO zS5dWe5c{FGkj4NSEy}sd_9WYJJ?g>Zs68z~Wg?`!t868mQ7iik>P3gJ0e*$`u$;fE ztoRyWSNdI1H8BfY;a2Rg^M8rPUIWf`O<&5>YFA0#yTBQ0I9E z>Jxj$@dwoTj}CT~osRa{nf@?TEv!I2zaBN;Ce$f<6TSKt7dkgI4KbN$g?iu-R1wCb zifuD?$M;bahgNo#{TQzA*bI9y-VS?WHfsKZ*ck7kPL0hU6YDlTtXaZP1FFIb6M z;Yn1gK1LPK52&qZUDZ`~EQg}5yHQ&;4{h9u3hV-^XfLDY`wh!s&1z-=bx~V3wwl-6 z_#^{*!DiINuVXlVhB{uiu_BfaHC9ILVJ%eZ`=DMt995JFPCpM-E1OV1MgM`CCp63i z9^s{-RQE%Dkp??1Kt+BOHSq_ifWAhh@JG}KDkR+45OrT?$9|{)hdbAwLcM1-w!jxq z^LXE+p_PB>-0&MF)Az4#0!YP3`U_E!Z$Z6i7iyv-sA4Ndr8J8F-<7Jp59 zGPM@7&Xy%j-j(8;z=g z4Ak?haW-yttW#S>$ob1FYw#-#02n9Pht73Ulri#t(!98lNT*)bKBk(bcM z3#cu+feO4_gt@;GDkI&njn4ll8v0?e1e@VLR0=;uZB0<5tL)e97}T+8jXKAPj!RMZ z?Q{C?qUQSwTL6n}KVnA_q-5HY-P1kpq{J-uWIH*-W2dA~cF(rm=~cc$Gm*^`l0)|+ETdz!`CBQxE0 zlj(^mo-THDW)tqt%yK7Aj`gkVxXLf4alaq!LwDhCRidWhdIs?NPpQ z{eSVBIAZW1JI-bS=^1uvM*0-D$Ii^2K0U*ul}wsr51&3YC4F|R-L%2fthCg)iL*Q@ zS#D3a5uR*!0~Vd-PSTAj>2^{^dUDE?Y)@iVN=CY!FvslqIcRC65#M;B$S)MtXgg`v*)Wq4mF)d@VJMWdD{k`eawD_#4EHa5PYf#D` zMkbTk^b`gA=W+Lp?6Q^od2}jk;5C09Oi4?e@*lHiX`#+tw)1XQm-goevoeyhJZ`tI zWavp(-r+~v$0lcFWTj_hx$Rl3Jvk#g-4xT5l$ma=E7|RFr?b21tU}2vH|$_--`#2V zUB3AAWWT(6GwS+A&)6E^pO~5H&dR$p%UeGwF*PYWm8!I}Jc;Rc<*_m1PB)840qZC}y;=2L9XIHshbqK;eadL`>QfKcu4lI$!Q!=xB zcXDs|`9kxyy270B*f)2oTh&2y71ykH<=t63+_!e!EkEDE4dVi~By299w|whLU+-

&;_Jzs-5NWasjt)rYzH4=0mhE83H{`9P#^pfCIX zbTp42XcN-$#G;}j&-~#u+Ql0d{J#Tu^VmGAc){i(-r`l& zwTI0U|8*gMed(rM|2bN?ac%L^#eW>_q?eX#&M(^ZUvD%8^T(TYFUvK@*nazzEAL+y zIyX76O|flQP?$TvBxio{o}AL7FDe~HOHXJgm+URcKU%WT=X>zto?5=1MW4HTi%LfM z<+ZsM<$LPdgn-H=zQx6>U$&c;o#SSC@7!Ko*V&-_CB?hf6`wp>vTILi&i=w9+bAO6 z$nRea^eTt1ELM4O%Ak1Zt88IWZf?oRz0S69p=jgM!i5K~99>(uXWNw%%eg?+vnPeS z=NINYt4oJ=T{*n`%AuSq$4}}g{QFB_5j~+_IkM>AuNslj$2LjvRlRpIAX?vr!rVQD zFBOz*UQtr8r|`tHg(nx5Zdy{3zl)R*ENM9KhO0tg!OwxN@vfSD>i_U@P;z!XPdEi5 zD!ShHE0`GU+UBaW|2aiXrIsyQXG<3vN|)UH2;p40rAG XFSu9R6<2=U_$ delta 13929 zcma*t2Xs|czQ^%%LlOuzlmH3s5PC^SAQVBGfPnN8njnVc27)08DM-^x?-(FR6Qzh$ z5zG}r38+{A%b*}SDl!7ODHd=qh)!lm=3&5Lo#;9BN&c%FbHe&R5=XCCfEu! z(P7vCQ?MaEgBtKKR>z}Q72m^Pyn^cQd#r#zV|B*2%5<`c#n}j#fLLZ^RMQkD>ah_<&{g#73yP+i@M0 zXH)Np$ElA;qHfjfVkYzmmZd%l6@kYv8WS8hU_I*Rus#-IUkrGV_-iJEC{#l?M&V4X zgZofh^A2vr%52;u+>P{M1$8r9&<8`PyOCY9=Aezas7PIM{0bG>BGi`N?MD15TYoqY zbRz+pQ}5?E9qUuyg8Z?L^Os)y6_sRuJqBy3 zA}SId)Pj~GC(l}g$~Dis6tpK_pk`Qt3gz#}Hd`?dn`BBy4YUhcgjIsdmDXfZ1Wv$K zxDu6|dDslU#c-_7?9|=?RiBFFvBz3Xp%D$|uq=Lu4e=-QfK{`<*^*&s(>@)wCF_t5 ztgWb!e}>xAo2ZrDLq80D#IgvURULH^jYfUG0R46TH&AHjBGeek2N#H65Z*`C%MCQ4 z?ubgJu8t#65lKRI_zHf5XRsn39AqMJ0`>WIT#k3~QJlv<*JFI^iVFA}Y71%)v8=J! z5*3L>sJ-8fZSg3U#}d@aenKT}r=i@2I0o50>nv&_m4=!3!>|JNmZhZ`dLHWYGpMBc7K72B4E4tl9EV{TfLW-moP(`#A=V_qhp`6rvm?y=S4I&3 zN;G^=g9i8=%VFb@Ce#tA3H8FJI2e_DS(t>!uq}qiS{B=F#bOL@Lq+5h$DdFaU5!!3 z);NoL?@`2GdvltG%6Jhc;57`v?xW32V^JYX#44D9)o`Ix-+)Tu-Pjo4L-l(L^_OBX^+rWzsMG!!YDI~tftO$)ZpIq89rfN3)I#3Ge)tjU zehDR^l+^8!ytcZd#`UbEpqXqy&1?_W#KYJM&!RfMjZfeos4M#kHe3_gk6QUDj9`zi zVO8o?#+wB-L`|>-s{d}N&-)?~@>pXj(5E#GdDl9NEis&ZXorKa4bI2r_$o%?7f6Cz zL62Eh8jeFn=zY|w`4)B2RGMhEBnoZnvFOGbI8NvP3WdQmbbQ>hM&c4wh`z)o*euR; zJP4OkpN2ZWcTg)IHp!gxEL8n@R5HHlv{#5X6KaQDX^+K@n1ex#Z@o`p3tq+qOye)| z#=49%FoNl7uXkY?Jb?aq2yJ`~Kf%kWi0w}_TX+?<_jfQHt4=lp$KZq1lhLEl@1vmP zC^N2M4x*%GiG&O#;WM$`iK z;{$jS!|+Zr@z=_Ort`lgKMxRzJqn~ic|j;dr=R5(!4hk6_KT==XPK{o&VDmYU@SR%I~07Qe&n`p5|DK zdKavLBd|G6L7nHd7>pNCTk|zW;SZ=|+HjT`xGA=w-UGE2Y1mTdecv&|m1MVtCi)I_GEwrmM%g0G<>@c~BT4Qz=ab4=3pK%J^lI20$MM>9Q4K@+%! zRk7S$v%)acih7|!Ho`Ftm87fDjb7Y=p--7DIf+{N52*L=;8+ZJ+T_4QjHLeD)5KpP ze~*URSb|~bM_BZLemv4155!hD->Dx&ZNYV?USXcux*n*BO+;h0Q0gHI%rR<%+Oi?o3CE)DfptjUT3@3gI%=WG zr75T_n}fOu_jxF2#fMRQ_&)Z;8>k62S!7lgg^I`!?2b>Pj?rn<^W_$sejY(>sT-9G z8&Id{AP&Yms2u3M#7xLDh=TU$ant~5&Ij92q0hxiScJL}?_fI&UuxP%VOQ!2*bjGN zUHlfCVYy{yLQ&Y9dK@Y_S700R&&sEuj=#f(7`oi7xC?6U#-SoK12xcE)RtU8t@L*s zg{@Z@7oxV{3mlHkSDG7f4hB%)j>?VQI9TWZ1O;^zw2Gfnurr2Wg5zw*HCRtCqE`4e zvI6TGDkrM0HWP1!3jHJ46ys0}TZXN0KWdy$F@o_+|6L>kBA+oKACG!*E%w1uGS71PCW&i<62b2PM{|GsZ;+6^<3~86M=T9TzddL+T&pqym--fLg4a=@FSp(d81DEmwx)e5Dk2+E5%!`YbqzIv^3M`~tzgKr z=D1Bq&3rEE!R=1{JXWUuz0-aVbw4!OU?$!Tb^d#yjdO7*K97pjO;i$B-DuuxjYFvS z@ldEi;aRMX`>`CJ#$Y^)TIpZ065dBmq~a#C!aAsk^+QcK78S9lo%Xj;IrA~9-+QRY z25dGtbWRXSO5@m2?}i0=|H{Q1)YIyofed+R9fdMxv4}6?HtH zL``r#YJz)Ek@$;K{}o5;{M*l)-)LrHM;^#Sh58n10{_4u^nbyGyfUhzE*OQ0SPwU% zR(1q6@R!JLSvMV*Y%`&+zuh<#Lv;QZP#BM!unyiqt+eV6)8PZCi(?`_hAXixeuEvb z-cEC@MxxqRV0}D=is%*8mfXem_&aJ#qhBQc3QZph%KBtfeGO`bd8i3p#{j&Knuz}{ zbDW}3D}D_1+#+m<+a1rKa;U(m|AsZG*L}$(W4o7#e7QM zr%)YzhPCh;N58$axj54}2Y=khZ^V9F#Rn|wYo7b!AQu+xCtorDI)49<`PcF3ht27^ zih(?L(?dZw)g4@l;jcQs!=Y}htM~|3%r$#A8pEltMjfZasPq30Ho=Ri1^t3rVP&t0 zTuTg~-XE*s5Uh%xNlqaXmE}uN$8C+%zSZ#+)PQfG&i`c$Lmz5D>oxOUP1NV%sD-t~ zSe%F&_y~5xbEeMke@9HH!>~FZ#5nbSPJI&UIL<(A!6HzgmZd!u71@TRvj0OUC<&j!#<&B=;k#H%4<0i!e*l|NABak(Oze%TF&i&p zDo#3XSr4m@O1{t&=KUV1WF3KO&&EKV|D!74Db!xRjoONjQOE5|)LxZ6X(kYgT5(UT zgOjl{E=2Wn8np%Qpf0A%&gZvL3y91&&y7NlLOy{)7o3iD@F1##^NydRCRTzv6?ahs z1)nnQwXi$&#;8apI4(o=_cH3DI)`=f4^#x|p62|Iq|ocM>39>W<6Kk(jyvsdp)QWE zus{BUgRtA{=GXF7s0rUf<;EYVej2`EemZWBdVVS@QpZsJ-G0Mk9xVT+u`0IXgW9ML z2Re>NWp6TeLJvNO$54^GgWWOujBz@)q5dlBYxx@Lf-C=)+0yo?2*i0PG^DT$HSm56 z$Ez5PuD8wS?NBRH3`V-W1KVVn<88z|t@0f`8L)C|)p7XdVXy9aw z!R^iimz@WSv5||=qK-}Vv*yK~sCqxAJ_8lfr!WN9V|(0>8t`i@z}u)?`s+F8=YJms zWp~JVW`oUe0`9>E81SB1SrgQj^u$MT7&gL#r~y7kZAk$JVZ-;$Mbipx>QgZlSK-~;W|)aBaXxCLFQY>C1?tpX!-{wZ^_<^_=DvtPO{fp*`7t;gCpz_9 z$K%*uD}IAQ6+(O$)p6hj({Y$%Gt>Yvs17G$ZA^6P9#oPo!3aEriTD+2YkPlW{ylLf zDknZdx@1iGoJ9#41L=b$FO0PEv(PWuV0LH$kC zd!IVqz=x^-aEbWq*mV5FbT|V0QJ>({ccUh9*r~sP8t6ULN^Urxm%D8KskSyo(VmUf z@C|H&m#`&U{3~iAjXyIBj`mPchn-L>8s>cPDC)sUI1p2D80MqSd*#2H)6v4QKdPT3 zr@jD(Q{Rcx@DA3)c)lX#d{m@7+bGx+PNVMTzo8rN;b@%ng*h%Ka18apFHPtsVl(Qy z(Z;{vGQ5RDaOM>=(Q~K)Z=jOS^_BSrr4e#`JysG0&15yk;LE5GUPEPjwX6JggrPVR z523cm|8JaW9E5uA7%GCVqd%TU-K2j(?i}my*b$F^Z6@}2tgrK5@tRplE9}7oBd{B; z$FX<`H9*95V~k@LY)kt?sIAJvP+Z`Az7@|=e-TGv@(uGN-dm`N4B$G9Vti{Mg?jiJ zmcxr!9>2r@EW}Fqo%8u`Sb=&OA73C?1?S^*RIc2{HrS)kL^KUG!Iv-ubFn_2!_x2n zA_~gZ-|<1LTx61I00vS|K!x@R)YX}V4e?FXg>wU^VAWzX;B4$o{SbD*pHN%Zs>FQz z%|rF`atZOTMd243+F|fFX5ika`UI!G7PW%?*ckIr9bQ2jqrWvB562qRpGN(boP#>P zJFx-gViUZGb?}#OiGN)RHNG4T^;}nMhNDnf{xk;TQPjlFVl;k+M95ZOeH1F9Q?Vv)M@={nJK={Iq4OVj#|#*Q8ekBP#F40h_Mv{z_$z9_ zd#Du#-8CzUMh(~#b^c>f3rNLST!t^=RqT!nem3Kr!Agv8ou}|9euiDK-7jX(r=!m4 zZd8ZwIQ6U8n)*MmIkx=OoQe^sh|P5ByHOK;AGLtn*b-~~W+L(sdUOoNQW$_)j&Gtr z^-8~+Y_EppskcEzpfhSu`=YjH3~K8ZVJIF&<<3W_i2jHj@K;o1qwbk+%fEEJ z(GY@F{$V<7f_iZn*1|DZ6VtFAF2xFX66@euR3vU-SFCv7T;-48!_-%zCUg-Mk)KfG z*8PL{_oL9}5A%z~Ow_<!)J;9b-> zm0YgUtr+Dv+e1Mwynwpd&Z9zl6MJBopR065kD>qGD*Z*IE-DAc zU>jV5eeoy`!uw8rpueem)>BYuuA^4&AK)s@<_f4#Ho&$x0X2a&s4Y3>_z`N)i&6df z1sWTpPS3-rEy_Y0*P@=!#TGjMA5hRr?xJ1@DeEfD?%t@COn2OdiqwawfqubZ7*@_z zda)#32X2e1Q7Hs2rGwdVe*lzxAl^ihR^n`?>RZ-3n$Rjj;6h|K1e(^S}U9l0A#v@GPq1 zz>2QYuixs9^{^xD&9Em<#2&Z9x|)I#D>Ikp}(&T%aL`TtuAI-mZP zP3XH|7wS_`TeAywJl{fv^mAnItUG991AcqaM0=nH7=(&oI+nqes0C%Cw(c)D9Dk_d z@|3>NE7%M)1vS7@9EdMs4LyiDb^%pQBx*Z`qxQBnYHLQLCNde7w3$wQ4=R^l!(MnD zgRp5ek6B4nHM4i)P?3mp+=N=m1yskys0rOcT}b7to5(bD?1*}9kmESi1SdP6uS4a? zUTlqrJkA4GP#u=7VIol<^hM=oQZ@}Sp?(~78Wy0Q z&qei|6iMeHMX|N(uoBwT zOC3)*evgWfUB@KtAPmv@PobbtFG3~FN>qqWqdNW!_2m*&*W^lDR7l68CbS9z@Br$V zy^1>j*B#5(Gtad}wGTt}Hw)`9zO|ErLVp@{%nDH7Zoi>k2&`{z#z@peC!j)@fManw z>O0|mRF>bwo>;emxep#gweLXXzy;J5{5i(zgWD9e;)b@dGpfT8sJ)wkI+m+ZA>W5K zo<}9oH_qq3p(0Y#+dpzsP)_#Z2Ht_4p78Tt?>xMccW%FL{k-P}%yoGa23;zXvwm1_ z@9g3Et}0L3Nh$UWcX~!rYKq+?Bd6WSP9Ygt@l)*h)Re@e$@Yx6s)w-6`($xXcVYGM&E6`$;L8?(~$n&bbUTB;;@uN7vJw-M zX4(mC7S`-JQscQsUjEt4d^?1n=@SQ(fNRb>H|!C1pmW zCB;86%bu2+;BIX{8JC`7$4yElHmuK{mc%krCKGh0j|}fG>-V@OOmR=6ySQnDzezfS z(x=`0pATp1(@5=W_ZC)4s$E+DkEdIc4g@MGlO86`q7xoWaNF_8aTysoSDz2{e!3yc zH9)K3Z96_LehLq|Q)VQkr>0C}t#%wECZxt^rn}wF-u@Y^A+aNe#*XaWe|Vcn=aGyS zIej*b9URAAnf)ETv-SwX8GmJKU%{(`)J)t-Y?(E_49u7ZidUd@Z9M#Ir~2t>dpP|4OeyF*1eo$yJ-2c z!VQOgE4KRU=6m3~lwEVd5l`Vz)*B9aQ3O5}pT(Fms z{^JTLIJUcR>we#=#lAHMO5f7BdAUVf=Q9Fj@33#;{YDl&x5JlxsCeP2f|DJCW@>?k(Q2N=rDf@>c#bR#EuM3fB71v#+`CJ;=Oysc6B8KTrRy{N*{`@4{OV zgMw497p>RKOgFyGd+DiU`x?Di8a3SqJn#MFyNQ80gKy9F7TkWmtoO$6R|4~H`nm20 zHf8~Z%TN239ro?oKnMy>?DAzV_hm0ETD*sD3y&@KZFnWm7vxHC<;7KSUG(di@~@kq zaPJOZe)g^WRldWk3zyF;+`7DE{)xi;Y)!{>usPqi^hEK&-M+Oe^4eB*?Qu=}*Jx{2 zYfa=fPZu0JS+Zl5Vvv8rcX+M22ud%8Tlw3Vz4hlL|J!S;*wWITj^`IHfBoMsh>hE7 zxI*)41-lYm!}4-{2RHd%Kj6#WP_*u_Z|6c^_KJU93}&;LNpapG-|4mg5ySs-O)#mA zbE>-H2AT{t@BiD)Ksd;%|Et5|WlR6O9_*s$j``NG`sI0FR&{;v*YeNB{f!X%LOzn>_*GQw^1dEU%0S9||R-z%$pi}w~B zTkT|3>ESa=(jbxJ9@WRat$l#*m W`9&vI`IfIPnU|Z_wSg, 2018 # Liang-Bo Wang , 2016 # Liang-Bo Wang , 2016-2017 -# Steven Hsu , 2021-2022 +# Steven Hsu , 2021-2023 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-08-17 16:40+0000\n" +"POT-Creation-Date: 2024-04-14 23:27+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Steven Hsu , 2021-2022\n" +"Last-Translator: Steven Hsu , 2021-2023\n" "Language-Team: Chinese (Taiwan) (http://app.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.12.1\n" +"Generated-By: Babel 2.14.0\n" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -45,104 +45,104 @@ msgstr "來源資料夾與目的資料夾不能為相同" msgid "Running Sphinx v%s" msgstr "正在執行 Sphinx v%s 版本" -#: sphinx/application.py:223 +#: sphinx/application.py:219 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "本專案需要 Sphinx v%s 版或以上,故無法以現版本編譯。" -#: sphinx/application.py:239 +#: sphinx/application.py:235 msgid "making output directory" msgstr "正在建立輸出目錄" -#: sphinx/application.py:244 sphinx/registry.py:444 +#: sphinx/application.py:240 sphinx/registry.py:450 #, python-format msgid "while setting up extension %s:" msgstr "正在設置擴充套件 %s 時:" -#: sphinx/application.py:250 +#: sphinx/application.py:246 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "目前在 conf.py 裡定義的 'setup' 並非一個 Python 的可呼叫物件。請將其定義修改為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:281 +#: sphinx/application.py:277 #, python-format msgid "loading translations [%s]... " msgstr "正在載入翻譯 [%s]..." -#: sphinx/application.py:298 sphinx/util/display.py:84 +#: sphinx/application.py:294 sphinx/util/display.py:85 msgid "done" msgstr "完成" -#: sphinx/application.py:300 +#: sphinx/application.py:296 msgid "not available for built-in messages" msgstr "不是有效的內建訊息" -#: sphinx/application.py:314 +#: sphinx/application.py:310 msgid "loading pickled environment" msgstr "正在載入已 pickle 的環境" -#: sphinx/application.py:322 +#: sphinx/application.py:318 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:336 +#: sphinx/application.py:332 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:369 +#: sphinx/application.py:365 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:370 +#: sphinx/application.py:366 msgid "finished with problems" msgstr "完成但有問題" -#: sphinx/application.py:374 +#: sphinx/application.py:370 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:376 +#: sphinx/application.py:372 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:379 +#: sphinx/application.py:375 #, python-format msgid "build %s, %s warning." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:381 +#: sphinx/application.py:377 #, python-format msgid "build %s, %s warnings." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:385 +#: sphinx/application.py:381 #, python-format msgid "build %s." msgstr "建立 %s。" -#: sphinx/application.py:616 +#: sphinx/application.py:610 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r 已經被註冊,它的訪客將會被覆寫" -#: sphinx/application.py:695 +#: sphinx/application.py:689 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:717 sphinx/application.py:739 +#: sphinx/application.py:711 sphinx/application.py:733 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1288 +#: sphinx/application.py:1282 #, 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:1292 +#: sphinx/application.py:1286 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1295 +#: sphinx/application.py:1289 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,70 +163,75 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1299 +#: sphinx/application.py:1293 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1307 sphinx/application.py:1311 +#: sphinx/application.py:1301 sphinx/application.py:1305 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" -#: sphinx/config.py:179 +#: sphinx/config.py:309 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config 資料夾沒有包含 conf.py 檔案 (%s)" -#: sphinx/config.py:188 +#: sphinx/config.py:318 msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." msgstr "找到無效的組態值: 'language = None' 。請以一個有效的語言碼更新您的配置。跳回 'en' (英語)。" -#: sphinx/config.py:217 +#: sphinx/config.py:341 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "無法覆寫資料夾組態設定 %r,忽略中(使用 %r 來設定個別元素)" -#: sphinx/config.py:226 +#: sphinx/config.py:350 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "無效的數字 %r 於組態值 %r,忽略中" -#: sphinx/config.py:231 +#: sphinx/config.py:355 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "無法以未支援的型別覆寫組態設定 %r,忽略中" -#: sphinx/config.py:260 +#: sphinx/config.py:378 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆寫未知的組態值 %r,忽略中" -#: sphinx/config.py:288 +#: sphinx/config.py:418 #, python-format -msgid "No such config value: %s" -msgstr "無此類組態值:%s" +msgid "No such config value: %r" +msgstr "" -#: sphinx/config.py:312 +#: sphinx/config.py:440 #, python-format msgid "Config value %r already present" msgstr "組態值 %r 已經存在" -#: sphinx/config.py:360 +#: sphinx/config.py:473 +#, python-format +msgid "cannot cache unpickable configuration value: %r" +msgstr "" + +#: sphinx/config.py:509 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "在您的組態檔中有一個語法錯誤:%s\n" -#: sphinx/config.py:363 +#: sphinx/config.py:512 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "組態檔(或它 import 的其中一個模組)呼叫了 sys.exit()" -#: sphinx/config.py:370 +#: sphinx/config.py:519 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -234,291 +239,328 @@ msgid "" "%s" msgstr "在您的組態檔中有一個程式化錯誤:\n\n%s" -#: sphinx/config.py:393 +#: sphinx/config.py:540 +#, python-format +msgid "Failed to convert %r to a set or tuple" +msgstr "" + +#: sphinx/config.py:565 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "組態值 `source_suffix' 預期是一個字串、一組字串,或字典。但是 `%r' 被給予。" -#: sphinx/config.py:413 +#: sphinx/config.py:585 #, python-format msgid "Section %s" msgstr "章節 %s" -#: sphinx/config.py:414 +#: sphinx/config.py:586 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:415 +#: sphinx/config.py:587 #, python-format msgid "Table %s" msgstr "表格 %s" -#: sphinx/config.py:416 +#: sphinx/config.py:588 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:488 +#: sphinx/config.py:663 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "組態值 `{name}` 必須是 {candidates} 的其中之一,但 `{current}` 被給予。" -#: sphinx/config.py:506 +#: sphinx/config.py:687 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預期 {permitted} 。" -#: sphinx/config.py:518 +#: sphinx/config.py:700 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預設為 `{default.__name__}' 。" -#: sphinx/config.py:528 +#: sphinx/config.py:711 #, python-format msgid "primary_domain %r not found, ignored." msgstr "找不到 primary_domain %r,已略過。" -#: sphinx/config.py:540 +#: sphinx/config.py:723 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." msgstr "從 v2.0 開始,Sphinx 預設使用 \"index\" 作為 root_doc。請在您的 conf.py 加上 \"root_doc = 'contents'\"。" -#: sphinx/events.py:63 +#: sphinx/events.py:64 #, python-format msgid "Event %r already present" msgstr "事件 %r 已經存在" -#: sphinx/events.py:69 +#: sphinx/events.py:70 #, python-format msgid "Unknown event name: %s" msgstr "未知的事件名稱:%s" -#: sphinx/events.py:107 +#: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" msgstr "對於事件 %r 的 handler %r 拋出了一個例外" -#: sphinx/extension.py:53 +#: sphinx/extension.py:55 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "擴充套件 %s 被 needs_extensions 的設定所要求,但它沒有被載入。" -#: sphinx/extension.py:69 +#: sphinx/extension.py:76 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "這個專案需要擴充套件 %s 的最低版本是 %s,所以無法以載入的版本 (%s) 被建立。" -#: sphinx/highlighting.py:149 +#: sphinx/highlighting.py:155 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments lexer 名稱 %r 不是已知的" -#: sphinx/highlighting.py:176 +#: sphinx/highlighting.py:189 #, python-format msgid "" "Lexing literal_block %r as \"%s\" resulted in an error at token: %r. " "Retrying in relaxed mode." -msgstr "" +msgstr "將 literal_block %r lex 為 \"%s\" 時,在 token %r 造成錯誤。正在以 relaxed 模式重試中。" -#: sphinx/project.py:65 +#: sphinx/project.py:66 #, python-format msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." msgstr "為文件 \"%s\" 找到多個檔案: %r\n使用 %r 來建立。" -#: sphinx/project.py:74 +#: sphinx/project.py:81 #, python-format msgid "Ignored unreadable document %r." -msgstr "" +msgstr "已略過無法讀取的文件 %r 。" -#: sphinx/registry.py:136 +#: sphinx/registry.py:142 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Builder class %s 沒有 \"name\" 屬性" -#: sphinx/registry.py:138 +#: sphinx/registry.py:144 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r 已存在(於 %s 模組)" -#: sphinx/registry.py:151 +#: sphinx/registry.py:157 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder 名稱 %s 未註冊或無法從 entry point 取得" -#: sphinx/registry.py:158 +#: sphinx/registry.py:164 #, python-format msgid "Builder name %s not registered" msgstr "Builder 名稱 %s 未註冊" -#: sphinx/registry.py:165 +#: sphinx/registry.py:171 #, python-format msgid "domain %s already registered" msgstr "domain %s 已註冊" -#: sphinx/registry.py:188 sphinx/registry.py:201 sphinx/registry.py:212 +#: sphinx/registry.py:194 sphinx/registry.py:207 sphinx/registry.py:218 #, python-format msgid "domain %s not yet registered" msgstr "domain %s 尚未被註冊" -#: sphinx/registry.py:192 +#: sphinx/registry.py:198 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r 指令已註冊給 domain %s" -#: sphinx/registry.py:204 +#: sphinx/registry.py:210 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r 角色已註冊給 domain %s" -#: sphinx/registry.py:215 +#: sphinx/registry.py:221 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r 索引已註冊給 domain %s" -#: sphinx/registry.py:246 +#: sphinx/registry.py:252 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type 已註冊" -#: sphinx/registry.py:272 +#: sphinx/registry.py:278 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type 已註冊" -#: sphinx/registry.py:279 +#: sphinx/registry.py:285 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r 已註冊" -#: sphinx/registry.py:288 +#: sphinx/registry.py:294 #, python-format msgid "source_parser for %r is already registered" msgstr "對於 %r 的 source_parser 已註冊" -#: sphinx/registry.py:296 +#: sphinx/registry.py:302 #, python-format msgid "Source parser for %s not registered" msgstr "對於 %s 的源碼剖析器未註冊" -#: sphinx/registry.py:312 +#: sphinx/registry.py:318 #, python-format msgid "Translator for %r already exists" msgstr "對於 %r 的翻譯器已經存在" -#: sphinx/registry.py:328 +#: sphinx/registry.py:334 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "對於 add_node() 的 kwargs 必須是一個 (visit, depart) 函式值組:%r=%r" -#: sphinx/registry.py:411 +#: sphinx/registry.py:417 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r 已註冊" -#: sphinx/registry.py:423 +#: sphinx/registry.py:429 #, python-format msgid "math renderer %s is already registered" msgstr "數學描繪器 %s 已註冊" -#: sphinx/registry.py:438 +#: sphinx/registry.py:444 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "擴充套件 %r 已被併入 %s 版以上的 Sphinx:此擴充套件已略過。" -#: sphinx/registry.py:449 +#: sphinx/registry.py:455 msgid "Original exception:\n" msgstr "原始的例外:\n" -#: sphinx/registry.py:450 +#: sphinx/registry.py:456 #, python-format msgid "Could not import extension %s" msgstr "無法引入擴充套件 %s" -#: sphinx/registry.py:455 +#: sphinx/registry.py:461 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "擴充套件 %r 沒有 setup() 函式;它真的是 Sphinx 擴充套件模組嗎?" -#: sphinx/registry.py:464 +#: sphinx/registry.py:470 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "此專案使用的 %s 擴充套件需要 Sphinx v%s 以上的版本;所以它無法以此版本被建立。" -#: sphinx/registry.py:472 +#: sphinx/registry.py:478 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "擴充套件 %r 從它的 setup() 函式回傳一個未支援物件;它應該回傳 None 或一個元數據資料夾" -#: sphinx/roles.py:178 +#: sphinx/roles.py:201 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/roles.py:194 +#: sphinx/roles.py:222 #, python-format msgid "invalid PEP number %s" msgstr "無效的 PEP 號碼 %s" -#: sphinx/roles.py:228 +#: sphinx/roles.py:257 #, python-format msgid "invalid RFC number %s" msgstr "無效的 RFC 號碼 %s" -#: sphinx/theming.py:77 -#, python-format -msgid "theme %r doesn't have \"theme\" setting" -msgstr "主題 %r 沒有 \"theme\" 設定" - -#: sphinx/theming.py:79 -#, python-format -msgid "theme %r doesn't have \"inherit\" setting" -msgstr "主題 %r 沒有 \"inherit\" 設定" - -#: sphinx/theming.py:85 -#, python-format -msgid "no theme named %r found, inherited by %r" -msgstr "未找到名為 %r 的主題,被 %r 繼承" - -#: sphinx/theming.py:108 +#: sphinx/theming.py:125 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s。%s 不在已被搜尋的主題組態中出現" -#: sphinx/theming.py:127 +#: sphinx/theming.py:140 #, python-format msgid "unsupported theme option %r given" msgstr "未支援的主題選項 %r 被給予" -#: sphinx/theming.py:216 +#: sphinx/theming.py:206 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主題路徑中的檔案 %r 不是有效的 zipfile 或未包含主題" -#: sphinx/theming.py:230 +#: sphinx/theming.py:226 +#, python-format +msgid "no theme named %r found (missing theme.toml?)" +msgstr "" + +#: sphinx/theming.py:259 #, python-format -msgid "no theme named %r found (missing theme.conf?)" -msgstr "未找到名為 %r 的主題(缺少 theme.conf?)" +msgid "The %r theme has circular inheritance" +msgstr "" + +#: sphinx/theming.py:262 +#, python-format +msgid "" +"The %r theme inherits from %r, which is not a loaded theme. Loaded themes " +"are: %s" +msgstr "" + +#: sphinx/theming.py:269 +#, python-format +msgid "The %r theme has too many ancestors" +msgstr "" + +#: sphinx/theming.py:295 +#, python-format +msgid "no theme configuration file found in %r" +msgstr "" + +#: sphinx/theming.py:323 sphinx/theming.py:374 +#, python-format +msgid "theme %r doesn't have the \"theme\" table" +msgstr "" + +#: sphinx/theming.py:327 +#, python-format +msgid "The %r theme \"[theme]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:331 sphinx/theming.py:377 +#, python-format +msgid "The %r theme must define the \"theme.inherit\" setting" +msgstr "" + +#: sphinx/theming.py:335 +#, python-format +msgid "The %r theme \"[options]\" table is not a table" +msgstr "" + +#: sphinx/theming.py:353 +#, python-format +msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\"" +msgstr "" #: sphinx/builders/__init__.py:183 #, python-format @@ -534,8 +576,8 @@ msgstr "未找到對於 %s builder 適用的圖片:%s" msgid "building [mo]: " msgstr "建立 [mo]:" -#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:575 -#: sphinx/builders/__init__.py:602 +#: sphinx/builders/__init__.py:208 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:601 msgid "writing output... " msgstr "編寫輸出..." @@ -584,7 +626,7 @@ msgstr "在命令列給了 %d 個原始檔案" msgid "targets for %d source files that are out of date" msgstr "%d 個過時原始檔案的目標" -#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:236 +#: sphinx/builders/__init__.py:309 sphinx/builders/gettext.py:243 #, python-format msgid "building [%s]: " msgstr "正在建立 [%s]:" @@ -593,88 +635,88 @@ msgstr "正在建立 [%s]:" msgid "looking for now-outdated files... " msgstr "正在尋找目前已過期的檔案..." -#: sphinx/builders/__init__.py:321 +#: sphinx/builders/__init__.py:320 #, python-format msgid "%d found" msgstr "已找到 %d" -#: sphinx/builders/__init__.py:323 +#: sphinx/builders/__init__.py:322 msgid "none found" msgstr "找不到任何結果" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:327 msgid "pickling environment" msgstr "正在 pickle 環境" -#: sphinx/builders/__init__.py:334 +#: sphinx/builders/__init__.py:333 msgid "checking consistency" msgstr "正在檢查一致性" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:337 msgid "no targets are out of date." msgstr "沒有過時的目標。" -#: sphinx/builders/__init__.py:377 +#: sphinx/builders/__init__.py:376 msgid "updating environment: " msgstr "正在更新環境:" -#: sphinx/builders/__init__.py:398 +#: sphinx/builders/__init__.py:397 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 已新增, %s 已變更, %s 已移除" -#: sphinx/builders/__init__.py:436 sphinx/builders/__init__.py:448 +#: sphinx/builders/__init__.py:435 sphinx/builders/__init__.py:447 msgid "reading sources... " msgstr "正在讀取來源..." -#: sphinx/builders/__init__.py:550 +#: sphinx/builders/__init__.py:549 #, python-format msgid "docnames to write: %s" msgstr "待寫入的 docname: %s" -#: sphinx/builders/__init__.py:559 sphinx/builders/singlehtml.py:156 +#: sphinx/builders/__init__.py:558 sphinx/builders/singlehtml.py:157 msgid "preparing documents" msgstr "正在準備文件" -#: sphinx/builders/__init__.py:562 +#: sphinx/builders/__init__.py:561 msgid "copying assets" -msgstr "" +msgstr "正在複製資產 (asset)" #: sphinx/builders/_epub_base.py:215 #, python-format msgid "duplicated ToC entry found: %s" msgstr "找到了重複的 ToC 項目: %s" -#: sphinx/builders/_epub_base.py:403 sphinx/builders/html/__init__.py:750 -#: sphinx/builders/latex/__init__.py:425 sphinx/builders/texinfo.py:183 +#: sphinx/builders/_epub_base.py:404 sphinx/builders/html/__init__.py:758 +#: sphinx/builders/latex/__init__.py:432 sphinx/builders/texinfo.py:187 msgid "copying images... " msgstr "正在複製圖片..." -#: sphinx/builders/_epub_base.py:410 +#: sphinx/builders/_epub_base.py:411 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "無法讀取圖片檔 %r: 正在複製它做為替代" -#: sphinx/builders/_epub_base.py:416 sphinx/builders/html/__init__.py:758 -#: sphinx/builders/latex/__init__.py:433 sphinx/builders/texinfo.py:193 +#: sphinx/builders/_epub_base.py:417 sphinx/builders/html/__init__.py:766 +#: sphinx/builders/latex/__init__.py:440 sphinx/builders/texinfo.py:197 #, python-format msgid "cannot copy image file %r: %s" msgstr "無法複製圖片檔 %r: %s" -#: sphinx/builders/_epub_base.py:433 +#: sphinx/builders/_epub_base.py:434 #, python-format msgid "cannot write image file %r: %s" msgstr "無法寫入圖片檔 %r: %s" -#: sphinx/builders/_epub_base.py:443 +#: sphinx/builders/_epub_base.py:444 msgid "Pillow not found - copying image files" msgstr "未找到 Pillow - 正在複製圖片檔" -#: sphinx/builders/_epub_base.py:469 +#: sphinx/builders/_epub_base.py:470 msgid "writing mimetype file..." msgstr "正在寫入 mimetype 檔案..." -#: sphinx/builders/_epub_base.py:474 +#: sphinx/builders/_epub_base.py:475 msgid "writing META-INF/container.xml file..." msgstr "正在寫入 META-INF/container.xml 檔案..." @@ -682,470 +724,470 @@ msgstr "正在寫入 META-INF/container.xml 檔案..." msgid "writing content.opf file..." msgstr "正在寫入 content.opf 檔案..." -#: sphinx/builders/_epub_base.py:531 +#: sphinx/builders/_epub_base.py:539 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "對於 %s 未知的 mimetype,忽略中" -#: sphinx/builders/_epub_base.py:678 +#: sphinx/builders/_epub_base.py:686 msgid "writing toc.ncx file..." msgstr "正在寫入 toc.ncx 檔案..." -#: sphinx/builders/_epub_base.py:703 +#: sphinx/builders/_epub_base.py:711 #, python-format msgid "writing %s file..." msgstr "正在寫入 %s 檔案..." -#: sphinx/builders/changes.py:30 +#: sphinx/builders/changes.py:32 #, python-format msgid "The overview file is in %(outdir)s." msgstr "概觀檔案是在 %(outdir)s 。" -#: sphinx/builders/changes.py:56 +#: sphinx/builders/changes.py:59 #, python-format msgid "no changes in version %s." msgstr "在 %s 版中無變更" -#: sphinx/builders/changes.py:58 +#: sphinx/builders/changes.py:61 msgid "writing summary file..." msgstr "正在寫入摘要檔案..." -#: sphinx/builders/changes.py:73 +#: sphinx/builders/changes.py:76 msgid "Builtins" msgstr "內建" -#: sphinx/builders/changes.py:75 +#: sphinx/builders/changes.py:78 msgid "Module level" msgstr "模組層次" -#: sphinx/builders/changes.py:118 +#: sphinx/builders/changes.py:123 msgid "copying source files..." msgstr "正在複製原始檔案..." -#: sphinx/builders/changes.py:125 +#: sphinx/builders/changes.py:130 #, python-format msgid "could not read %r for changelog creation" msgstr "在變更日誌建立時無法讀取 %r" -#: sphinx/builders/dummy.py:18 +#: sphinx/builders/dummy.py:19 msgid "The dummy builder generates no files." msgstr "虛擬建立器未產生任何檔案。" -#: sphinx/builders/epub3.py:79 +#: sphinx/builders/epub3.py:81 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePub 檔案是在 %(outdir)s 。" -#: sphinx/builders/epub3.py:183 +#: sphinx/builders/epub3.py:185 msgid "writing nav.xhtml file..." msgstr "正在寫入 nav.xhtml 檔案..." -#: sphinx/builders/epub3.py:209 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "conf 值 \"epub_language\" (或 \"language\") 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:213 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "conf 值 \"epub_uid\" 在 EPUB3 應該是 XML NAME" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "conf 值 \"epub_title\" (或 \"html_title\") 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:220 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "conf 值 \"epub_author\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "conf 值 \"epub_contributor\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "conf 值 \"epub_description\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "conf 值 \"epub_publisher\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "conf 值 \"epub_copyright\" (或 \"copyright\") 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:236 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "conf 值 \"epub_identifier\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "conf 值 \"version\" 在 EPUB3 不應該為空" -#: sphinx/builders/epub3.py:253 sphinx/builders/html/__init__.py:1189 +#: sphinx/builders/epub3.py:255 sphinx/builders/html/__init__.py:1187 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無效的 css_file: %r, 已略過" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:222 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "訊息目錄是在 %(outdir)s" -#: sphinx/builders/gettext.py:237 +#: sphinx/builders/gettext.py:244 #, python-format msgid "targets for %d template files" msgstr "模板檔 %d 的目標" -#: sphinx/builders/gettext.py:241 +#: sphinx/builders/gettext.py:248 msgid "reading templates... " msgstr "正在讀取模板..." -#: sphinx/builders/gettext.py:275 +#: sphinx/builders/gettext.py:282 msgid "writing message catalogs... " msgstr "正在寫入訊息目錄..." -#: sphinx/builders/linkcheck.py:60 +#: sphinx/builders/linkcheck.py:59 #, 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:109 +#: sphinx/builders/linkcheck.py:137 #, python-format msgid "broken link: %s (%s)" msgstr "錯誤連結: %s (%s)" -#: sphinx/builders/linkcheck.py:606 +#: sphinx/builders/linkcheck.py:660 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "在 linkcheck_allowed_redirects 編譯 regex 失敗: %r %s" -#: sphinx/builders/manpage.py:35 +#: sphinx/builders/manpage.py:37 #, python-format msgid "The manual pages are in %(outdir)s." msgstr "手冊頁面在 %(outdir)s" -#: sphinx/builders/manpage.py:42 +#: sphinx/builders/manpage.py:44 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "未找到 \"man_pages\" 組態值:不會編寫任何手冊頁面" -#: sphinx/builders/latex/__init__.py:309 sphinx/builders/manpage.py:51 -#: sphinx/builders/singlehtml.py:164 sphinx/builders/texinfo.py:110 +#: sphinx/builders/latex/__init__.py:314 sphinx/builders/manpage.py:53 +#: sphinx/builders/singlehtml.py:165 sphinx/builders/texinfo.py:112 msgid "writing" msgstr "編寫中" -#: sphinx/builders/manpage.py:66 +#: sphinx/builders/manpage.py:68 #, python-format msgid "\"man_pages\" config value references unknown document %s" msgstr "\"man_pages\" 組態值引用未知的文件 %s" -#: sphinx/builders/singlehtml.py:32 +#: sphinx/builders/singlehtml.py:34 #, python-format msgid "The HTML page is in %(outdir)s." msgstr "HTML 頁面在 %(outdir)s 。" -#: sphinx/builders/singlehtml.py:159 +#: sphinx/builders/singlehtml.py:160 msgid "assembling single document" msgstr "正在組合單一文件" -#: sphinx/builders/singlehtml.py:177 +#: sphinx/builders/singlehtml.py:178 msgid "writing additional files" msgstr "正在寫入附加檔案" -#: sphinx/builders/texinfo.py:46 +#: sphinx/builders/texinfo.py:48 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfo 檔案在 %(outdir)s 。" -#: sphinx/builders/texinfo.py:48 +#: sphinx/builders/texinfo.py:50 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\n在該目錄中執行 'make' 以透過 makeinfo 執行這些\n(在此使用 'make info' 以自動執行)" -#: sphinx/builders/texinfo.py:75 +#: sphinx/builders/texinfo.py:77 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "未找到 \"texinfo_documents\" 組態值;不會編寫任何文件" -#: sphinx/builders/texinfo.py:83 +#: sphinx/builders/texinfo.py:85 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" 組態值引用未知的文件 %s" -#: sphinx/builders/latex/__init__.py:291 sphinx/builders/texinfo.py:106 +#: sphinx/builders/latex/__init__.py:296 sphinx/builders/texinfo.py:108 #, python-format msgid "processing %s" msgstr "正在處理 %s" -#: sphinx/builders/latex/__init__.py:364 sphinx/builders/texinfo.py:159 +#: sphinx/builders/latex/__init__.py:369 sphinx/builders/texinfo.py:161 msgid "resolving references..." msgstr "正在解析參照..." -#: sphinx/builders/latex/__init__.py:374 sphinx/builders/texinfo.py:168 +#: sphinx/builders/latex/__init__.py:380 sphinx/builders/texinfo.py:171 msgid " (in " msgstr " (於 " -#: sphinx/builders/texinfo.py:198 +#: sphinx/builders/texinfo.py:202 msgid "copying Texinfo support files" msgstr "正在複製 Texinfo 支援檔案" -#: sphinx/builders/texinfo.py:202 +#: sphinx/builders/texinfo.py:206 #, python-format msgid "error writing file Makefile: %s" msgstr "錯誤寫入檔案 Makefile: %s" -#: sphinx/builders/text.py:29 +#: sphinx/builders/text.py:30 #, python-format msgid "The text files are in %(outdir)s." msgstr "文字檔案在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:1140 sphinx/builders/text.py:76 -#: sphinx/builders/xml.py:94 +#: sphinx/builders/html/__init__.py:1138 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:96 #, python-format msgid "error writing file %s: %s" msgstr "錯誤寫入檔案 %s: %s" -#: sphinx/builders/xml.py:34 +#: sphinx/builders/xml.py:36 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XML 檔案在 %(outdir)s 。" -#: sphinx/builders/xml.py:106 +#: sphinx/builders/xml.py:109 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "pseudo-XML 檔案在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:122 +#: sphinx/builders/html/__init__.py:130 #, python-format msgid "build info file is broken: %r" msgstr "build info 檔案已失效: %r" -#: sphinx/builders/html/__init__.py:159 +#: sphinx/builders/html/__init__.py:168 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML 頁面在 %(outdir)s 。" -#: sphinx/builders/html/__init__.py:385 +#: sphinx/builders/html/__init__.py:394 #, python-format msgid "Failed to read build info file: %r" msgstr "讀取 build info 檔失敗: %r" -#: sphinx/builders/html/__init__.py:478 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:100 -#: sphinx/writers/texinfo.py:225 +#: sphinx/builders/html/__init__.py:487 sphinx/builders/latex/__init__.py:189 +#: sphinx/transforms/__init__.py:119 sphinx/writers/manpage.py:101 +#: sphinx/writers/texinfo.py:227 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html/__init__.py:497 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html/__init__.py:497 +#: sphinx/builders/html/__init__.py:506 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:569 +#: sphinx/builders/html/__init__.py:579 msgid "next" msgstr "下一頁" -#: sphinx/builders/html/__init__.py:578 +#: sphinx/builders/html/__init__.py:588 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html/__init__.py:674 +#: sphinx/builders/html/__init__.py:684 msgid "generating indices" msgstr "正在產生索引" -#: sphinx/builders/html/__init__.py:689 +#: sphinx/builders/html/__init__.py:699 msgid "writing additional pages" msgstr "正在編寫附加頁面" -#: sphinx/builders/html/__init__.py:768 +#: sphinx/builders/html/__init__.py:776 msgid "copying downloadable files... " msgstr "正在複製可下載的檔案..." -#: sphinx/builders/html/__init__.py:776 +#: sphinx/builders/html/__init__.py:784 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "無法複製可下載的檔案 %r: %s" -#: sphinx/builders/html/__init__.py:809 sphinx/builders/html/__init__.py:821 +#: sphinx/builders/html/__init__.py:817 sphinx/builders/html/__init__.py:829 #, 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:842 +#: sphinx/builders/html/__init__.py:850 msgid "copying static files" msgstr "正在複製靜態檔案" -#: sphinx/builders/html/__init__.py:858 +#: sphinx/builders/html/__init__.py:866 #, python-format msgid "cannot copy static file %r" msgstr "無法複製靜態檔案 %r" -#: sphinx/builders/html/__init__.py:863 +#: sphinx/builders/html/__init__.py:871 msgid "copying extra files" msgstr "正在複製額外檔案" -#: sphinx/builders/html/__init__.py:869 +#: sphinx/builders/html/__init__.py:877 #, python-format msgid "cannot copy extra file %r" msgstr "無法複製額外檔案 %r" -#: sphinx/builders/html/__init__.py:876 +#: sphinx/builders/html/__init__.py:884 #, python-format msgid "Failed to write build info file: %r" msgstr "寫入 build info 檔失敗: %r" -#: sphinx/builders/html/__init__.py:925 +#: sphinx/builders/html/__init__.py:933 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:986 +#: sphinx/builders/html/__init__.py:978 #, 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:1123 +#: sphinx/builders/html/__init__.py:1121 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." msgstr "在呈現頁面 %s 時發生了一個 Unicode 錯誤。請確認所有包含 non-ASCII 內容的組態值都是 Unicode 字串。" -#: sphinx/builders/html/__init__.py:1128 +#: sphinx/builders/html/__init__.py:1126 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "在呈現頁面 %s 時發生了一個錯誤。\n原因: %r" -#: sphinx/builders/html/__init__.py:1156 +#: sphinx/builders/html/__init__.py:1154 msgid "dumping object inventory" msgstr "正在傾印物件庫存" -#: sphinx/builders/html/__init__.py:1164 +#: sphinx/builders/html/__init__.py:1162 #, python-format msgid "dumping search index in %s" msgstr "正在傾印搜尋索引於 %s" -#: sphinx/builders/html/__init__.py:1212 +#: sphinx/builders/html/__init__.py:1210 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無效的 js_file: %r, 已略過" -#: sphinx/builders/html/__init__.py:1240 +#: sphinx/builders/html/__init__.py:1238 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "多個 math_renderer 已被註冊。但是沒有 math_renderer 被選擇。" -#: sphinx/builders/html/__init__.py:1243 +#: sphinx/builders/html/__init__.py:1241 #, python-format msgid "Unknown math_renderer %r is given." msgstr "未知的 math_renderer %r 被給予。" -#: sphinx/builders/html/__init__.py:1251 +#: sphinx/builders/html/__init__.py:1249 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 項目 %r 不存在" -#: sphinx/builders/html/__init__.py:1255 +#: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 項目 %r 被放入 outdir" -#: sphinx/builders/html/__init__.py:1264 +#: sphinx/builders/html/__init__.py:1262 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 項目 %r 不存在" -#: sphinx/builders/html/__init__.py:1268 +#: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 項目 %r 被放入 outdir" -#: sphinx/builders/html/__init__.py:1277 sphinx/builders/latex/__init__.py:437 +#: sphinx/builders/html/__init__.py:1275 sphinx/builders/latex/__init__.py:444 #, python-format msgid "logo file %r does not exist" msgstr "標誌檔案 %r 不存在" -#: sphinx/builders/html/__init__.py:1286 +#: sphinx/builders/html/__init__.py:1284 #, python-format msgid "favicon file %r does not exist" msgstr "favicon 檔案 %r 不存在" -#: sphinx/builders/html/__init__.py:1293 +#: sphinx/builders/html/__init__.py:1291 msgid "" "HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in " "configuration options)" -msgstr "" +msgstr "HTML 4 已不再被 Sphinx 所支援。(在組態選項中偵測到 \"html4_writer=True\")" -#: sphinx/builders/html/__init__.py:1308 +#: sphinx/builders/html/__init__.py:1306 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" -#: sphinx/builders/latex/__init__.py:113 +#: sphinx/builders/latex/__init__.py:115 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX 檔案在 %(outdir)s 。" -#: sphinx/builders/latex/__init__.py:115 +#: sphinx/builders/latex/__init__.py:117 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:150 +#: sphinx/builders/latex/__init__.py:152 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "未找到 \"latex_documents\" 組態值;不會編寫任何文件" -#: sphinx/builders/latex/__init__.py:158 +#: sphinx/builders/latex/__init__.py:160 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" 組態值引用未知的文件 %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:557 -#: sphinx/domains/std.py:569 sphinx/templates/latex/latex.tex_t:106 +#: sphinx/builders/latex/__init__.py:196 sphinx/domains/std/__init__.py:559 +#: sphinx/domains/std/__init__.py:571 sphinx/templates/latex/latex.tex_t:106 #: 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:138 -#: sphinx/writers/texinfo.py:493 +#: sphinx/writers/texinfo.py:497 msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:91 +#: sphinx/builders/latex/__init__.py:199 sphinx/templates/latex/latex.tex_t:91 msgid "Release" msgstr "發佈" -#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:370 +#: sphinx/builders/latex/__init__.py:213 sphinx/writers/latex.py:370 #, python-format msgid "no Babel option known for language %r" msgstr "沒有語言 %r 已知的 Babel 選項" -#: sphinx/builders/latex/__init__.py:387 +#: sphinx/builders/latex/__init__.py:394 msgid "copying TeX support files" msgstr "正在複製 TeX 支援檔案" -#: sphinx/builders/latex/__init__.py:403 +#: sphinx/builders/latex/__init__.py:410 msgid "copying TeX support files..." msgstr "正在複製 TeX 支援檔案..." -#: sphinx/builders/latex/__init__.py:416 +#: sphinx/builders/latex/__init__.py:423 msgid "copying additional files" msgstr "正在複製附加檔案" -#: sphinx/builders/latex/__init__.py:459 +#: sphinx/builders/latex/__init__.py:466 #, python-format msgid "Unknown configure key: latex_elements[%r], ignored." msgstr "未知的配置鍵: latex_elements[%r],已略過。" -#: sphinx/builders/latex/__init__.py:467 +#: sphinx/builders/latex/__init__.py:474 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." msgstr "未知的主題選項: latex_theme_options[%r],,已略過。" @@ -1160,18 +1202,18 @@ msgstr "%r 沒有「主題」設定" msgid "%r doesn't have \"%s\" setting" msgstr "%r 沒有 \"%s\" 設定" -#: sphinx/builders/latex/transforms.py:117 +#: sphinx/builders/latex/transforms.py:120 msgid "Failed to get a docname!" -msgstr "" +msgstr "無法取得 docname!" -#: sphinx/builders/latex/transforms.py:118 +#: sphinx/builders/latex/transforms.py:121 msgid "Failed to get a docname for source {source!r}!" -msgstr "" +msgstr "無法取得來源 {source!r} 的 docname!" -#: sphinx/builders/latex/transforms.py:479 +#: sphinx/builders/latex/transforms.py:482 #, python-format msgid "No footnote was found for given reference node %r" -msgstr "" +msgstr "給定的參考節點 %r 找不到註腳" #: sphinx/cmd/build.py:46 msgid "Exception occurred while building, starting debugger:" @@ -1227,8 +1269,8 @@ msgstr "錯誤回報可被歸檔於追蹤系統中,它是在 ." msgstr "需要更多資訊,請拜訪 ." @@ -1260,257 +1302,264 @@ msgid "path to output directory" msgstr "到輸出資料夾的路徑" #: sphinx/cmd/build.py:143 -msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "一份要重建的特定檔案列表。如果 -a 被指定則會被略過。" +msgid "" +"(optional) a list of specific files to rebuild. Ignored if --write-all is " +"specified" +msgstr "" #: sphinx/cmd/build.py:146 msgid "general options" msgstr "一般選項" #: sphinx/cmd/build.py:149 -msgid "builder to use (default: html)" -msgstr "要使用的建立器(預設值:html)" +msgid "builder to use (default: 'html')" +msgstr "" + +#: sphinx/cmd/build.py:152 +msgid "" +"run in parallel with N processes, when possible. 'auto' uses the number of " +"CPU cores" +msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:155 msgid "write all files (default: only write new and changed files)" msgstr "寫入所有檔案(預設:只寫入新增及已變更檔案)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:158 msgid "don't use a saved environment, always read all files" msgstr "不要使用已儲存的環境,永遠要讀取全部的檔案" -#: sphinx/cmd/build.py:157 -msgid "" -"path for the cached environment and doctree files (default: " -"OUTPUTDIR/.doctrees)" -msgstr "已存快取環境及 doctree 檔案的路徑(預設值:OUTPUTDIR/.doctrees)" - #: sphinx/cmd/build.py:161 -msgid "" -"build in parallel with N processes where possible (special value \"auto\" " -"will set N to cpu-count)" -msgstr "盡可能以 N 個程序平行建立(特殊值 \"auto\" 會設定 N 為 cpu-count)" +msgid "path options" +msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:163 msgid "" -"path where configuration file (conf.py) is located (default: same as " -"SOURCEDIR)" -msgstr "組態檔案 (conf.py) 所在的路徑(預設值:與 SOURCEDIR 相同)" +"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)" +msgstr "" -#: sphinx/cmd/build.py:168 -msgid "use no config file at all, only -D options" -msgstr "完全不使用組態檔案,只用 -D 選項" +#: sphinx/cmd/build.py:166 +msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)" +msgstr "" #: sphinx/cmd/build.py:171 +msgid "use no configuration file, only use settings from -D options" +msgstr "" + +#: sphinx/cmd/build.py:174 msgid "override a setting in configuration file" msgstr "在組態檔案中置換一項設定" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:177 msgid "pass a value into HTML templates" msgstr "傳遞一個值進入 HTML 模板" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:180 msgid "define tag: include \"only\" blocks with TAG" msgstr "定義 tag:「只」包含有 TAG 的區塊" -#: sphinx/cmd/build.py:179 -msgid "nit-picky mode, warn about all missing references" -msgstr "nit-picky 模式,對所有遺漏的參照發出警告" - #: sphinx/cmd/build.py:182 +msgid "nit-picky mode: warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:184 msgid "console output options" msgstr "控制台輸出選項" -#: sphinx/cmd/build.py:184 +#: sphinx/cmd/build.py:187 msgid "increase verbosity (can be repeated)" msgstr "增加贅言(可以被重複)" -#: sphinx/cmd/build.py:186 sphinx/ext/apidoc.py:342 +#: sphinx/cmd/build.py:189 sphinx/ext/apidoc.py:340 msgid "no output on stdout, just warnings on stderr" msgstr "在 stdout 無輸出,只有在 stderr 的警告" -#: sphinx/cmd/build.py:188 +#: sphinx/cmd/build.py:191 msgid "no output at all, not even warnings" msgstr "完全沒有輸出,也沒有警告" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:194 msgid "do emit colored output (default: auto-detect)" msgstr "執行 emit 彩色輸出(預設值:auto-detect)" -#: sphinx/cmd/build.py:194 +#: sphinx/cmd/build.py:197 msgid "do not emit colored output (default: auto-detect)" msgstr "不執行 emit 彩色輸出(預設值:auto-detect)" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:199 +msgid "warning control options" +msgstr "" + +#: sphinx/cmd/build.py:201 msgid "write warnings (and errors) to given file" msgstr "寫入警告(及錯誤)至給定的檔案" -#: sphinx/cmd/build.py:199 +#: sphinx/cmd/build.py:203 msgid "turn warnings into errors" msgstr "將警告轉為錯誤" -#: sphinx/cmd/build.py:201 -msgid "with -W, keep going when getting warnings" -msgstr "帶有 -W,在得到警告時會繼續前進" +#: sphinx/cmd/build.py:205 +msgid "with --fail-on-warning, keep going when getting warnings" +msgstr "" -#: sphinx/cmd/build.py:203 +#: sphinx/cmd/build.py:207 msgid "show full traceback on exception" msgstr "在例外中顯示完整的回溯" -#: sphinx/cmd/build.py:205 +#: sphinx/cmd/build.py:209 msgid "run Pdb on exception" msgstr "在例外中執行 Pdb" -#: sphinx/cmd/build.py:229 +#: sphinx/cmd/build.py:244 msgid "cannot combine -a option and filenames" msgstr "無法合併 -a 選項及檔名" -#: sphinx/cmd/build.py:250 +#: sphinx/cmd/build.py:276 #, python-format msgid "cannot open warning file %r: %s" msgstr "無法開啟警告檔案 %r: %s" -#: sphinx/cmd/build.py:264 +#: sphinx/cmd/build.py:296 msgid "-D option argument must be in the form name=value" msgstr "-D 選項引數必須是 name=value 的形式" -#: sphinx/cmd/build.py:271 +#: sphinx/cmd/build.py:303 msgid "-A option argument must be in the form name=value" msgstr "-A 選項引數必須是 name=value 的形式" -#: sphinx/cmd/quickstart.py:48 +#: sphinx/cmd/quickstart.py:42 msgid "automatically insert docstrings from modules" msgstr "從模組自動插入說明字串" -#: sphinx/cmd/quickstart.py:49 +#: sphinx/cmd/quickstart.py:43 msgid "automatically test code snippets in doctest blocks" msgstr "在 doctest 區塊自動測試程式碼片段" -#: sphinx/cmd/quickstart.py:50 +#: sphinx/cmd/quickstart.py:44 msgid "link between Sphinx documentation of different projects" msgstr "在不同專案的 Sphinx 說明文件中鏈接" -#: sphinx/cmd/quickstart.py:51 +#: sphinx/cmd/quickstart.py:45 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "寫入 \"todo\" 項目,它們可以在組建時被顯示或隱藏" -#: sphinx/cmd/quickstart.py:52 +#: sphinx/cmd/quickstart.py:46 msgid "checks for documentation coverage" msgstr "核對說明文件的涵蓋範圍" -#: sphinx/cmd/quickstart.py:53 +#: sphinx/cmd/quickstart.py:47 msgid "include math, rendered as PNG or SVG images" msgstr "包含 math,以 PNG 或 SVG 影像被呈現" -#: sphinx/cmd/quickstart.py:54 +#: sphinx/cmd/quickstart.py:48 msgid "include math, rendered in the browser by MathJax" msgstr "包含 math,被 MathJax 在瀏覽器中呈現" -#: sphinx/cmd/quickstart.py:55 +#: sphinx/cmd/quickstart.py:49 msgid "conditional inclusion of content based on config values" msgstr "根據組態值有條件地包含內容" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:50 msgid "include links to the source code of documented Python objects" msgstr "包含鏈接至已有說明文件的 Python 物件原始碼" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:51 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "建立 .nojekyll 檔案以在 GitHub 頁面發布文件" -#: sphinx/cmd/quickstart.py:99 +#: sphinx/cmd/quickstart.py:93 msgid "Please enter a valid path name." msgstr "請輸入有效的路徑名稱。" -#: sphinx/cmd/quickstart.py:115 +#: sphinx/cmd/quickstart.py:109 msgid "Please enter some text." msgstr "請輸入一些文字。" -#: sphinx/cmd/quickstart.py:122 +#: sphinx/cmd/quickstart.py:116 #, python-format msgid "Please enter one of %s." msgstr "請輸入一種 %s 。" -#: sphinx/cmd/quickstart.py:129 +#: sphinx/cmd/quickstart.py:123 msgid "Please enter either 'y' or 'n'." msgstr "請輸入 'y' 或 'n'。" -#: sphinx/cmd/quickstart.py:135 +#: sphinx/cmd/quickstart.py:129 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "請輸入檔案後綴,例如 '.rst' 或 '.txt'。" -#: sphinx/cmd/quickstart.py:215 +#: sphinx/cmd/quickstart.py:208 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "歡迎進入 Sphinx %s 快速入門公用程式。" -#: sphinx/cmd/quickstart.py:217 +#: sphinx/cmd/quickstart.py:210 msgid "" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "請輸入以下設定值(如果括號中有給定預設值,請直接\n按下 Enter 以接受它)。" -#: sphinx/cmd/quickstart.py:222 +#: sphinx/cmd/quickstart.py:215 #, python-format msgid "Selected root path: %s" msgstr "被選的根路徑: %s" -#: sphinx/cmd/quickstart.py:225 +#: sphinx/cmd/quickstart.py:218 msgid "Enter the root path for documentation." msgstr "輸入說明文件的根路徑。" -#: sphinx/cmd/quickstart.py:226 +#: sphinx/cmd/quickstart.py:219 msgid "Root path for the documentation" msgstr "說明文件的根路徑" -#: sphinx/cmd/quickstart.py:231 +#: sphinx/cmd/quickstart.py:224 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "錯誤:在被選的根路徑找到一個已存在的 conf.py。" -#: sphinx/cmd/quickstart.py:233 +#: sphinx/cmd/quickstart.py:226 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart 不會重寫已存在的 Sphinx 專案。" -#: sphinx/cmd/quickstart.py:235 +#: sphinx/cmd/quickstart.py:228 msgid "Please enter a new root path (or just Enter to exit)" msgstr "請輸入一個新的根路徑(或直接按 Enter 離開)" -#: sphinx/cmd/quickstart.py:242 +#: sphinx/cmd/quickstart.py:235 msgid "" "You have two options for placing the build directory for Sphinx output.\n" "Either, you use a directory \"_build\" within the root path, or you separate\n" "\"source\" and \"build\" directories within the root path." msgstr "您有兩個選擇來為 Sphinx 的輸出放置建立資料夾。\n其一,您可以在根路徑中使用資料夾 \"_build\",或者,\n您可以在根路徑中分離 \"source\" 和 \"build\" 資料夾。" -#: sphinx/cmd/quickstart.py:245 +#: sphinx/cmd/quickstart.py:238 msgid "Separate source and build directories (y/n)" msgstr "分離來源並建立資料夾 (y/n)" -#: sphinx/cmd/quickstart.py:249 +#: sphinx/cmd/quickstart.py:242 msgid "" "Inside the root directory, two more directories will be created; \"_templates\"\n" "for custom HTML templates and \"_static\" for custom stylesheets and other static\n" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "在根資料夾內部,另外兩個資料夾會被建立;\"_templates\" \n放置自訂的 HTML 模板,而 \"_static\" 放置自訂的表單及其他\n靜態檔案。您可以輸入另一個前綴(像是 \".\")來取代底線。" -#: sphinx/cmd/quickstart.py:252 +#: sphinx/cmd/quickstart.py:245 msgid "Name prefix for templates and static dir" msgstr "用於模板及靜態資料夾的名稱前綴" -#: sphinx/cmd/quickstart.py:256 +#: sphinx/cmd/quickstart.py:249 msgid "" "The project name will occur in several places in the built documentation." msgstr "專案名稱會在已建立的說明文件中的多個位置出現。" -#: sphinx/cmd/quickstart.py:257 +#: sphinx/cmd/quickstart.py:250 msgid "Project name" msgstr "專案名稱" -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:252 msgid "Author name(s)" msgstr "作者姓名" -#: sphinx/cmd/quickstart.py:263 +#: sphinx/cmd/quickstart.py:256 msgid "" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" "software. Each version can have multiple releases. For example, for\n" @@ -1519,15 +1568,15 @@ msgid "" "just set both to the same value." msgstr "在 Sphinx 中,軟體具有「版本」和「發布版本」的概念。每個\n版本可以有多個發布版本。舉例來說,Python 的版本會像是 2.5 \n或 3.0,而發布版本則像是 2.5.1 或 3.0a1。如果您不需要這個雙\n重的結構,請直接將兩者設為相同的值。" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:261 msgid "Project version" msgstr "專案版本" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:263 msgid "Project release" msgstr "專案發布版本" -#: sphinx/cmd/quickstart.py:274 +#: sphinx/cmd/quickstart.py:267 msgid "" "If the documents are to be written in a language other than English,\n" "you can select a language here by its language code. Sphinx will then\n" @@ -1537,21 +1586,21 @@ msgid "" "https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." msgstr "如果文件是被英語以外的語言被編寫,您可以根據它的語言碼\n在此選擇一個語言。Sphinx 會將它產生的文本翻譯為該語言。\n\n要了解可支援的語言碼列表,請參閱\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." -#: sphinx/cmd/quickstart.py:282 +#: sphinx/cmd/quickstart.py:275 msgid "Project language" msgstr "專案語言" -#: sphinx/cmd/quickstart.py:288 +#: sphinx/cmd/quickstart.py:281 msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "用於原始檔的檔案名稱後綴。通常,這會是 \".txt\" 或 \".rst\"。\n只有具有此後綴的檔案才會被認為是文件。" -#: sphinx/cmd/quickstart.py:290 +#: sphinx/cmd/quickstart.py:283 msgid "Source file suffix" msgstr "原始檔案後綴" -#: sphinx/cmd/quickstart.py:294 +#: sphinx/cmd/quickstart.py:287 msgid "" "One document is special in that it is considered the top node of the\n" "\"contents tree\", that is, it is the root of the hierarchical structure\n" @@ -1559,91 +1608,91 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "一份文件的特別之處在於它會被視為 \"contents tree\" 中的頂端\n節點,也就是說,它是文件階層結構中的根。通常,這會是 \n\"index\",但如果您的 \"index\" 文件是一個自訂的模板,您也可以\n將它設定為另一個檔名。" -#: sphinx/cmd/quickstart.py:298 +#: sphinx/cmd/quickstart.py:291 msgid "Name of your master document (without suffix)" msgstr "您的主要文件名稱(不含後綴)" -#: sphinx/cmd/quickstart.py:303 +#: sphinx/cmd/quickstart.py:296 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "錯誤:在被選的根路徑中已經找到主檔 %s 。" -#: sphinx/cmd/quickstart.py:305 +#: sphinx/cmd/quickstart.py:298 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "sphinx-quickstart 不會重寫已存在的檔案。" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:300 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "請輸入一個新的檔案名稱,或將已存在的檔案重新命名並按下 Enter" -#: sphinx/cmd/quickstart.py:311 +#: sphinx/cmd/quickstart.py:304 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "指示以下哪一個 Sphinx 擴充應該被啟用:" -#: sphinx/cmd/quickstart.py:319 +#: sphinx/cmd/quickstart.py:312 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "註解:imgmath 和 mathjax 無法同時被啟用。imgmath 已被取消選擇。" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:318 msgid "" "A Makefile and a Windows command file can be generated for you so that you\n" "only have to run e.g. `make html' instead of invoking sphinx-build\n" "directly." msgstr "會為您產生一個 Makefile 和一個 Windows 命令檔,所以\n您只需要執行像是 `make html' 而不必直接調用 \nsphinx-build。" -#: sphinx/cmd/quickstart.py:328 +#: sphinx/cmd/quickstart.py:321 msgid "Create Makefile? (y/n)" msgstr "是否建立 Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:331 +#: sphinx/cmd/quickstart.py:324 msgid "Create Windows command file? (y/n)" msgstr "是否建立 Windows 命令檔?(y/n)" -#: sphinx/cmd/quickstart.py:375 sphinx/ext/apidoc.py:93 +#: sphinx/cmd/quickstart.py:368 sphinx/ext/apidoc.py:93 #, python-format msgid "Creating file %s." msgstr "正在建立檔案 %s 。" -#: sphinx/cmd/quickstart.py:380 sphinx/ext/apidoc.py:90 +#: sphinx/cmd/quickstart.py:373 sphinx/ext/apidoc.py:90 #, python-format msgid "File %s already exists, skipping." msgstr "檔案 %s 已存在,正在跳過。" -#: sphinx/cmd/quickstart.py:422 +#: sphinx/cmd/quickstart.py:418 msgid "Finished: An initial directory structure has been created." msgstr "已結束:一個初始資料夾結構已被建立。" -#: sphinx/cmd/quickstart.py:424 +#: sphinx/cmd/quickstart.py:420 #, python-format msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " msgstr "您現在應該在您的主檔 %s 輸入資料並建立其他說明文件\n原始檔。" -#: sphinx/cmd/quickstart.py:427 +#: sphinx/cmd/quickstart.py:423 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" msgstr "使用 Makefile 來建立文件,像這樣:\n make builder" -#: sphinx/cmd/quickstart.py:430 +#: sphinx/cmd/quickstart.py:426 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s" msgstr "使用 sphinx-build 命令來建立文件,像這樣:\n sphinx-build -b builder %s %s" -#: sphinx/cmd/quickstart.py:432 +#: sphinx/cmd/quickstart.py:428 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck." msgstr "在這裡 \"builder\" 是一種被支援的建立器,例如 html,latex 或 linkcheck。" -#: sphinx/cmd/quickstart.py:467 +#: sphinx/cmd/quickstart.py:464 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1653,135 +1702,135 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\n為 Sphinx 專案產生需要的檔案。\n\nsphinx-quickstart 是一個互動式工具,它會問一些關於您專案\n的問題,然後產生完整的說明文件資料夾以及用於 sphinx-build \n的 Makefile 樣本。\n" -#: sphinx/cmd/quickstart.py:482 +#: sphinx/cmd/quickstart.py:479 msgid "quiet mode" msgstr "安靜模式" -#: sphinx/cmd/quickstart.py:487 +#: sphinx/cmd/quickstart.py:484 msgid "project root" msgstr "專案根" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:486 msgid "Structure options" msgstr "結構選項" -#: sphinx/cmd/quickstart.py:491 +#: sphinx/cmd/quickstart.py:488 msgid "if specified, separate source and build dirs" msgstr "如果有指定,會分離來源資料夾和 build 資料夾" -#: sphinx/cmd/quickstart.py:493 +#: sphinx/cmd/quickstart.py:490 msgid "if specified, create build dir under source dir" msgstr "如果有指定,會在來源資料夾下建立 build 資料夾" -#: sphinx/cmd/quickstart.py:495 +#: sphinx/cmd/quickstart.py:492 msgid "replacement for dot in _templates etc." msgstr "在 _templates 等處進行句號的取代" -#: sphinx/cmd/quickstart.py:497 +#: sphinx/cmd/quickstart.py:494 msgid "Project basic options" msgstr "專案基本選項" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:496 msgid "project name" msgstr "專案名稱" -#: sphinx/cmd/quickstart.py:501 +#: sphinx/cmd/quickstart.py:498 msgid "author names" msgstr "作者名" -#: sphinx/cmd/quickstart.py:503 +#: sphinx/cmd/quickstart.py:500 msgid "version of project" msgstr "專案版本" -#: sphinx/cmd/quickstart.py:505 +#: sphinx/cmd/quickstart.py:502 msgid "release of project" msgstr "專案發布" -#: sphinx/cmd/quickstart.py:507 +#: sphinx/cmd/quickstart.py:504 msgid "document language" msgstr "文件語言" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:506 msgid "source file suffix" msgstr "源始檔後綴" -#: sphinx/cmd/quickstart.py:511 +#: sphinx/cmd/quickstart.py:508 msgid "master document name" msgstr "主文件名稱" -#: sphinx/cmd/quickstart.py:513 +#: sphinx/cmd/quickstart.py:510 msgid "use epub" msgstr "使用 epub" -#: sphinx/cmd/quickstart.py:515 +#: sphinx/cmd/quickstart.py:512 msgid "Extension options" msgstr "擴充套件選項" -#: sphinx/cmd/quickstart.py:519 sphinx/ext/apidoc.py:402 +#: sphinx/cmd/quickstart.py:516 sphinx/ext/apidoc.py:400 #, python-format msgid "enable %s extension" msgstr "啟用 %s 擴充套件" -#: sphinx/cmd/quickstart.py:521 sphinx/ext/apidoc.py:398 +#: sphinx/cmd/quickstart.py:518 sphinx/ext/apidoc.py:396 msgid "enable arbitrary extensions" msgstr "啟用任意的擴充套件" -#: sphinx/cmd/quickstart.py:523 +#: sphinx/cmd/quickstart.py:520 msgid "Makefile and Batchfile creation" msgstr "Makefile 及 Batchfile 的建立" -#: sphinx/cmd/quickstart.py:525 +#: sphinx/cmd/quickstart.py:522 msgid "create makefile" msgstr "建立 makefile" -#: sphinx/cmd/quickstart.py:527 +#: sphinx/cmd/quickstart.py:524 msgid "do not create makefile" msgstr "不要建立 makefile" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:526 msgid "create batchfile" msgstr "建立 batchfile" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:529 msgid "do not create batchfile" msgstr "不要建立 batchfile" -#: sphinx/cmd/quickstart.py:535 +#: sphinx/cmd/quickstart.py:532 msgid "use make-mode for Makefile/make.bat" msgstr "使用 make 模式於 Makefile/make.bat" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:535 msgid "do not use make-mode for Makefile/make.bat" msgstr "不要使用 make 模式於 Makefile/make.bat" -#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:404 +#: sphinx/cmd/quickstart.py:537 sphinx/ext/apidoc.py:402 msgid "Project templating" msgstr "專案模板化中" -#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:407 +#: sphinx/cmd/quickstart.py:540 sphinx/ext/apidoc.py:405 msgid "template directory for template files" msgstr "用於模板檔案的模板資料夾" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:543 msgid "define a template variable" msgstr "定義一個模板變數" -#: sphinx/cmd/quickstart.py:579 +#: sphinx/cmd/quickstart.py:576 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\" 被指定,但 \"project\" 或 \"author\" 的任一項未被指定。" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:590 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "錯誤:指定的路徑不是資料夾,或是 sphinx 檔案已經存在。" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:592 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart 只能產生於空白資料夾中。請指定一個新的根路徑。" -#: sphinx/cmd/quickstart.py:610 +#: sphinx/cmd/quickstart.py:607 #, python-format msgid "Invalid template variable: %s" msgstr "無效的模板變數: %s" @@ -1832,47 +1881,47 @@ msgstr "無法以一個 \"lines\" 的互斥集使用 \"lineno-match\" " msgid "Line spec %r: no lines pulled from include file %r" msgstr "Line spec %r: 從 include 檔案 %r 沒有提取任何一行" -#: sphinx/directives/other.py:116 +#: sphinx/directives/other.py:120 #, python-format msgid "toctree glob pattern %r didn't match any documents" msgstr "toctree glob 型樣 %r 未匹配任何文件" -#: sphinx/directives/other.py:142 sphinx/environment/adapters/toctree.py:323 +#: sphinx/directives/other.py:146 sphinx/environment/adapters/toctree.py:324 #, python-format msgid "toctree contains reference to excluded document %r" msgstr "toctree 包含了指向已排除文件的參照 %r" -#: sphinx/directives/other.py:145 sphinx/environment/adapters/toctree.py:327 +#: sphinx/directives/other.py:149 sphinx/environment/adapters/toctree.py:328 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "toctree 包含了指向不存在文件的參照 %r" -#: sphinx/directives/other.py:156 +#: sphinx/directives/other.py:160 #, python-format msgid "duplicated entry found in toctree: %s" msgstr "在 toctree 中找到重複的項目: %s" -#: sphinx/directives/other.py:188 +#: sphinx/directives/other.py:193 msgid "Section author: " msgstr "章節作者:" -#: sphinx/directives/other.py:190 +#: sphinx/directives/other.py:195 msgid "Module author: " msgstr "模組作者:" -#: sphinx/directives/other.py:192 +#: sphinx/directives/other.py:197 msgid "Code author: " msgstr "程式作者:" -#: sphinx/directives/other.py:194 +#: sphinx/directives/other.py:199 msgid "Author: " msgstr "作者:" -#: sphinx/directives/other.py:266 +#: sphinx/directives/other.py:275 msgid ".. acks content is not a list" msgstr ".. acks 的內容不是一個列表" -#: sphinx/directives/other.py:291 +#: sphinx/directives/other.py:301 msgid ".. hlist content is not a list" msgstr ".. hlist 的內容不是一個列表" @@ -1887,82 +1936,10 @@ msgstr "對 csv-table 指令的 \":file:\" 選項現在會將絕對路徑辨識 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2043 sphinx/domains/c.py:3318 -#, python-format -msgid "" -"Duplicate C declaration, also defined at %s:%s.\n" -"Declaration is '.. c:%s:: %s'." -msgstr "重複的 C 宣告,亦被定義於 %s:%s。\n宣告是 '.. c:%s:: %s'。" - -#: sphinx/domains/c.py:3257 -#, python-format -msgid "%s (C %s)" -msgstr "%s (C %s)" - -#: sphinx/domains/c.py:3356 sphinx/domains/cpp.py:7496 -#: sphinx/domains/python.py:682 sphinx/ext/napoleon/docstring.py:760 -msgid "Parameters" -msgstr "參數" - -#: sphinx/domains/c.py:3359 sphinx/domains/cpp.py:7502 -msgid "Return values" -msgstr "回傳值" - -#: sphinx/domains/c.py:3362 sphinx/domains/cpp.py:7505 -#: sphinx/domains/javascript.py:259 sphinx/domains/python.py:694 -msgid "Returns" -msgstr "回傳" - -#: sphinx/domains/c.py:3364 sphinx/domains/javascript.py:261 -#: sphinx/domains/python.py:696 -msgid "Return type" -msgstr "回傳型別" - -#: sphinx/domains/c.py:3730 sphinx/domains/cpp.py:7909 -msgid "member" -msgstr "成員函數" - -#: sphinx/domains/c.py:3731 -msgid "variable" -msgstr "變數" - -#: sphinx/domains/c.py:3732 sphinx/domains/cpp.py:7908 -#: sphinx/domains/javascript.py:365 sphinx/domains/python.py:1454 -msgid "function" -msgstr "函式" - -#: sphinx/domains/c.py:3733 -msgid "macro" -msgstr "巨集" - -#: sphinx/domains/c.py:3734 -msgid "struct" -msgstr "結構" - -#: sphinx/domains/c.py:3735 sphinx/domains/cpp.py:7907 -msgid "union" -msgstr "union" - -#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7912 -msgid "enum" -msgstr "enum" - -#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7913 -msgid "enumerator" -msgstr "enumerator" - -#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7910 -msgid "type" -msgstr "型別" - -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7915 -msgid "function parameter" -msgstr "函式參數" - #: sphinx/domains/changeset.py:23 #, python-format -msgid "New in version %s" -msgstr "在 %s 版新加入" +msgid "Added in version %s" +msgstr "" #: sphinx/domains/changeset.py:24 #, python-format @@ -1974,346 +1951,423 @@ msgstr "在 %s 版的變更" msgid "Deprecated since version %s" msgstr "在 %s 版之後被棄用" -#: sphinx/domains/citation.py:70 +#: sphinx/domains/changeset.py:26 +#, python-format +msgid "Removed in version %s" +msgstr "" + +#: sphinx/domains/citation.py:71 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "重複的引用 %s,亦出現於 %s" -#: sphinx/domains/citation.py:81 +#: sphinx/domains/citation.py:82 #, python-format msgid "Citation [%s] is not referenced." msgstr "引用 [%s] 未被參照。" -#: sphinx/domains/cpp.py:4929 sphinx/domains/cpp.py:7423 -#, python-format -msgid "" -"Duplicate C++ declaration, also defined at %s:%s.\n" -"Declaration is '.. cpp:%s:: %s'." -msgstr "重複的 C++ 宣告,亦被定義於 %s:%s。\n宣告是 '.. cpp:%s:: %s'。" - -#: sphinx/domains/cpp.py:7218 -msgid "Template Parameters" -msgstr "模板參數" - -#: sphinx/domains/cpp.py:7340 -#, python-format -msgid "%s (C++ %s)" -msgstr "%s (C++ %s)" - -#: sphinx/domains/cpp.py:7499 sphinx/domains/javascript.py:256 -msgid "Throws" -msgstr "拋出" - -#: sphinx/domains/cpp.py:7906 sphinx/domains/javascript.py:367 -#: sphinx/domains/python.py:1456 -msgid "class" -msgstr "類別" - -#: sphinx/domains/cpp.py:7911 -msgid "concept" -msgstr "概念" - -#: sphinx/domains/cpp.py:7916 -msgid "template parameter" -msgstr "模板參數" - -#: sphinx/domains/javascript.py:164 +#: sphinx/domains/javascript.py:165 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:1121 +#: sphinx/domains/javascript.py:166 sphinx/domains/python/__init__.py:240 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" -#: sphinx/domains/javascript.py:167 +#: sphinx/domains/javascript.py:168 #, python-format msgid "%s() (class)" msgstr "%s() (類別)" -#: sphinx/domains/javascript.py:169 +#: sphinx/domains/javascript.py:170 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:171 sphinx/domains/python.py:1206 +#: sphinx/domains/javascript.py:172 sphinx/domains/python/__init__.py:325 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" -#: sphinx/domains/javascript.py:253 +#: sphinx/domains/javascript.py:255 msgid "Arguments" msgstr "引數" -#: sphinx/domains/javascript.py:329 +#: sphinx/domains/cpp/__init__.py:350 sphinx/domains/javascript.py:258 +msgid "Throws" +msgstr "拋出" + +#: sphinx/domains/c/__init__.py:251 sphinx/domains/cpp/__init__.py:361 +#: sphinx/domains/javascript.py:261 sphinx/domains/python/_object.py:175 +msgid "Returns" +msgstr "回傳" + +#: sphinx/domains/c/__init__.py:253 sphinx/domains/javascript.py:263 +#: sphinx/domains/python/_object.py:177 +msgid "Return type" +msgstr "回傳型別" + +#: sphinx/domains/javascript.py:331 #, python-format msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:366 sphinx/domains/python.py:1458 +#: sphinx/domains/c/__init__.py:622 sphinx/domains/cpp/__init__.py:764 +#: sphinx/domains/javascript.py:368 sphinx/domains/python/__init__.py:574 +msgid "function" +msgstr "函式" + +#: sphinx/domains/javascript.py:369 sphinx/domains/python/__init__.py:578 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:368 sphinx/domains/python.py:1455 +#: sphinx/domains/cpp/__init__.py:762 sphinx/domains/javascript.py:370 +#: sphinx/domains/python/__init__.py:576 +msgid "class" +msgstr "類別" + +#: sphinx/domains/javascript.py:371 sphinx/domains/python/__init__.py:575 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:369 sphinx/domains/python.py:1461 +#: sphinx/domains/javascript.py:372 sphinx/domains/python/__init__.py:581 msgid "attribute" msgstr "屬性" -#: sphinx/domains/javascript.py:370 sphinx/domains/python.py:1463 +#: sphinx/domains/javascript.py:373 sphinx/domains/python/__init__.py:583 msgid "module" msgstr "模組" -#: sphinx/domains/javascript.py:401 +#: sphinx/domains/javascript.py:404 #, python-format msgid "duplicate %s description of %s, other %s in %s" msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" -#: sphinx/domains/math.py:61 +#: sphinx/domains/math.py:63 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "重複公式標籤 %s,亦出現於 %s" -#: sphinx/domains/math.py:116 sphinx/writers/latex.py:2252 +#: sphinx/domains/math.py:118 sphinx/writers/latex.py:2252 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無效的 math_eqref_format: %r" -#: sphinx/domains/python.py:687 -msgid "Variables" +#: sphinx/domains/rst.py:127 sphinx/domains/rst.py:184 +#, python-format +msgid "%s (directive)" +msgstr "%s (指令)" + +#: sphinx/domains/rst.py:185 sphinx/domains/rst.py:189 +#, python-format +msgid ":%s: (directive option)" +msgstr ":%s: (指令選項)" + +#: sphinx/domains/rst.py:213 +#, python-format +msgid "%s (role)" +msgstr "%s (角色)" + +#: sphinx/domains/rst.py:223 +msgid "directive" +msgstr "指令" + +#: sphinx/domains/rst.py:224 +msgid "directive-option" +msgstr "指令選項" + +#: sphinx/domains/rst.py:225 +msgid "role" +msgstr "角色" + +#: sphinx/domains/rst.py:247 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "%s %s 的重複敘述,其他的實例在 %s" + +#: sphinx/domains/c/__init__.py:146 +#, python-format +msgid "%s (C %s)" +msgstr "%s (C %s)" + +#: sphinx/domains/c/__init__.py:207 sphinx/domains/c/_symbol.py:552 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "重複的 C 宣告,亦被定義於 %s:%s。\n宣告是 '.. c:%s:: %s'。" + +#: sphinx/domains/c/__init__.py:245 sphinx/domains/cpp/__init__.py:344 +#: sphinx/domains/python/_object.py:163 sphinx/ext/napoleon/docstring.py:762 +msgid "Parameters" +msgstr "參數" + +#: sphinx/domains/c/__init__.py:248 sphinx/domains/cpp/__init__.py:357 +msgid "Return values" +msgstr "回傳值" + +#: sphinx/domains/c/__init__.py:620 sphinx/domains/cpp/__init__.py:765 +msgid "member" +msgstr "成員函數" + +#: sphinx/domains/c/__init__.py:621 +msgid "variable" msgstr "變數" -#: sphinx/domains/python.py:691 -msgid "Raises" -msgstr "引發" +#: sphinx/domains/c/__init__.py:623 +msgid "macro" +msgstr "巨集" + +#: sphinx/domains/c/__init__.py:624 +msgid "struct" +msgstr "結構" -#: sphinx/domains/python.py:975 sphinx/domains/python.py:1112 +#: sphinx/domains/c/__init__.py:625 sphinx/domains/cpp/__init__.py:763 +msgid "union" +msgstr "union" + +#: sphinx/domains/c/__init__.py:626 sphinx/domains/cpp/__init__.py:768 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/c/__init__.py:627 sphinx/domains/cpp/__init__.py:769 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/c/__init__.py:628 sphinx/domains/cpp/__init__.py:766 +msgid "type" +msgstr "型別" + +#: sphinx/domains/c/__init__.py:630 sphinx/domains/cpp/__init__.py:771 +msgid "function parameter" +msgstr "函式參數" + +#: sphinx/domains/cpp/__init__.py:63 +msgid "Template Parameters" +msgstr "模板參數" + +#: sphinx/domains/cpp/__init__.py:185 +#, python-format +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" + +#: sphinx/domains/cpp/__init__.py:268 sphinx/domains/cpp/_symbol.py:790 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "重複的 C++ 宣告,亦被定義於 %s:%s。\n宣告是 '.. cpp:%s:: %s'。" + +#: sphinx/domains/cpp/__init__.py:767 +msgid "concept" +msgstr "概念" + +#: sphinx/domains/cpp/__init__.py:772 +msgid "template parameter" +msgstr "模板參數" + +#: sphinx/domains/python/__init__.py:94 sphinx/domains/python/__init__.py:231 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:1035 sphinx/domains/python.py:1202 -#: sphinx/domains/python.py:1253 +#: sphinx/domains/python/__init__.py:154 sphinx/domains/python/__init__.py:321 +#: sphinx/domains/python/__init__.py:372 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:1037 +#: sphinx/domains/python/__init__.py:156 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:1062 +#: sphinx/domains/python/__init__.py:181 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:1063 +#: sphinx/domains/python/__init__.py:182 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:1117 +#: sphinx/domains/python/__init__.py:236 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python/__init__.py:238 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python.py:1257 +#: sphinx/domains/python/__init__.py:376 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python.py:1383 +#: sphinx/domains/python/__init__.py:502 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1384 +#: sphinx/domains/python/__init__.py:503 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1433 +#: sphinx/domains/python/__init__.py:552 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1457 +#: sphinx/domains/python/__init__.py:577 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:1459 +#: sphinx/domains/python/__init__.py:579 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python.py:1460 +#: sphinx/domains/python/__init__.py:580 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:1462 +#: sphinx/domains/python/__init__.py:582 msgid "property" msgstr "特性" -#: sphinx/domains/python.py:1520 +#: sphinx/domains/python/__init__.py:640 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :no-index: for" " one of them" -msgstr "" +msgstr "重複的 %s 的物件描述,在 %s 有其他實例,請在它們其中之一使用 :no-index:" -#: sphinx/domains/python.py:1640 +#: sphinx/domains/python/__init__.py:760 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1701 +#: sphinx/domains/python/__init__.py:821 msgid " (deprecated)" msgstr "(已棄用)" -#: sphinx/domains/rst.py:125 sphinx/domains/rst.py:181 -#, python-format -msgid "%s (directive)" -msgstr "%s (指令)" - -#: sphinx/domains/rst.py:182 sphinx/domains/rst.py:186 -#, python-format -msgid ":%s: (directive option)" -msgstr ":%s: (指令選項)" - -#: sphinx/domains/rst.py:209 -#, python-format -msgid "%s (role)" -msgstr "%s (角色)" - -#: sphinx/domains/rst.py:218 -msgid "directive" -msgstr "指令" - -#: sphinx/domains/rst.py:219 -msgid "directive-option" -msgstr "指令選項" - -#: sphinx/domains/rst.py:220 -msgid "role" -msgstr "角色" +#: sphinx/domains/python/_object.py:168 +msgid "Variables" +msgstr "變數" -#: sphinx/domains/rst.py:242 -#, python-format -msgid "duplicate description of %s %s, other instance in %s" -msgstr "%s %s 的重複敘述,其他的實例在 %s" +#: sphinx/domains/python/_object.py:172 +msgid "Raises" +msgstr "引發" -#: sphinx/domains/std.py:79 sphinx/domains/std.py:96 +#: sphinx/domains/std/__init__.py:80 sphinx/domains/std/__init__.py:97 #, python-format msgid "environment variable; %s" msgstr "環境變數; %s" -#: sphinx/domains/std.py:155 +#: sphinx/domains/std/__init__.py:157 #, 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:226 +#: sphinx/domains/std/__init__.py:228 #, python-format msgid "%s command line option" msgstr "%s 命令列選項" -#: sphinx/domains/std.py:228 +#: sphinx/domains/std/__init__.py:230 msgid "command line option" msgstr "命令列選項" -#: sphinx/domains/std.py:346 +#: sphinx/domains/std/__init__.py:348 msgid "glossary term must be preceded by empty line" msgstr "術語表項目必須有空白行在前" -#: sphinx/domains/std.py:354 +#: sphinx/domains/std/__init__.py:356 msgid "glossary terms must not be separated by empty lines" msgstr "術語表項目不可以被空白行分隔" -#: sphinx/domains/std.py:360 sphinx/domains/std.py:373 +#: sphinx/domains/std/__init__.py:362 sphinx/domains/std/__init__.py:375 msgid "glossary seems to be misformatted, check indentation" msgstr "術語表似乎有格式錯誤,請檢查縮排" -#: sphinx/domains/std.py:516 +#: sphinx/domains/std/__init__.py:518 msgid "glossary term" msgstr "雜項術語" -#: sphinx/domains/std.py:517 +#: sphinx/domains/std/__init__.py:519 msgid "grammar token" msgstr "語法單詞" -#: sphinx/domains/std.py:518 +#: sphinx/domains/std/__init__.py:520 msgid "reference label" msgstr "參照標籤" -#: sphinx/domains/std.py:520 +#: sphinx/domains/std/__init__.py:522 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std.py:521 +#: sphinx/domains/std/__init__.py:523 msgid "program option" msgstr "程式選項" -#: sphinx/domains/std.py:522 +#: sphinx/domains/std/__init__.py:524 msgid "document" msgstr "文件" -#: sphinx/domains/std.py:558 sphinx/domains/std.py:570 +#: sphinx/domains/std/__init__.py:560 sphinx/domains/std/__init__.py:572 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std.py:559 sphinx/domains/std.py:571 +#: sphinx/domains/std/__init__.py:561 sphinx/domains/std/__init__.py:573 #: sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" -#: sphinx/domains/std.py:614 sphinx/domains/std.py:720 -#: sphinx/ext/autosectionlabel.py:52 +#: sphinx/domains/std/__init__.py:616 sphinx/domains/std/__init__.py:722 +#: sphinx/ext/autosectionlabel.py:53 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重複的標籤 %s,亦出現於 %s" -#: sphinx/domains/std.py:633 +#: sphinx/domains/std/__init__.py:635 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "重複 %s 的描述 %s,亦出現於 %s" -#: sphinx/domains/std.py:839 +#: sphinx/domains/std/__init__.py:841 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已停用。 :numref: 已略過。" -#: sphinx/domains/std.py:847 +#: sphinx/domains/std/__init__.py:849 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "無法建立一個交互參照。任一數字未被指定: %s" -#: sphinx/domains/std.py:859 +#: sphinx/domains/std/__init__.py:861 #, python-format msgid "the link has no caption: %s" msgstr "這個連結沒有標題: %s" -#: sphinx/domains/std.py:873 +#: sphinx/domains/std/__init__.py:875 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無效的 numfig_format: %s (%r)" -#: sphinx/domains/std.py:876 +#: sphinx/domains/std/__init__.py:878 #, python-format msgid "invalid numfig_format: %s" msgstr "無效的 numfig_format: %s" -#: sphinx/domains/std.py:1106 +#: sphinx/domains/std/__init__.py:1109 #, python-format msgid "undefined label: %r" msgstr "未定義的標籤: %r" -#: sphinx/domains/std.py:1108 +#: sphinx/domains/std/__init__.py:1111 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %r" msgstr "無法建立一個交互參照。未找到標題或說明: %r" @@ -2330,35 +2384,35 @@ msgstr "組態已變更" msgid "extensions changed" msgstr "擴充套件已變更" -#: sphinx/environment/__init__.py:276 +#: sphinx/environment/__init__.py:279 msgid "build environment version not current" msgstr "建立環境的版本不是目前的" -#: sphinx/environment/__init__.py:278 +#: sphinx/environment/__init__.py:281 msgid "source directory has changed" msgstr "來源資料夾已變更" -#: sphinx/environment/__init__.py:357 +#: sphinx/environment/__init__.py:360 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "這個環境與所選的 builder 不相容,請選擇另一個 doctree 資料夾。" -#: sphinx/environment/__init__.py:456 +#: sphinx/environment/__init__.py:459 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "無法掃描 %s 中的文件: %r" -#: sphinx/environment/__init__.py:593 +#: sphinx/environment/__init__.py:596 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r 未被註冊" -#: sphinx/environment/__init__.py:727 +#: sphinx/environment/__init__.py:730 msgid "document isn't included in any toctree" msgstr "文件未被包含於任何 toctree" -#: sphinx/environment/__init__.py:764 +#: sphinx/environment/__init__.py:766 msgid "self referenced toctree found. Ignored." msgstr "找到自我參照的 toctree。已略過。" @@ -2382,39 +2436,39 @@ msgstr "未知的索引項目型別 %r" msgid "Symbols" msgstr "符號" -#: sphinx/environment/adapters/toctree.py:296 +#: sphinx/environment/adapters/toctree.py:297 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "偵測到循環的 toctree 參照,忽略中: %s <- %s" -#: sphinx/environment/adapters/toctree.py:316 +#: sphinx/environment/adapters/toctree.py:317 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" msgstr "toctree 包含了到文件 %r 的參照,該文件沒有標題:不會產生任何鏈接" -#: sphinx/environment/adapters/toctree.py:325 +#: sphinx/environment/adapters/toctree.py:326 #, python-format msgid "toctree contains reference to non-included document %r" msgstr "toctree 包含了 non-included 文件 %r 的參照" -#: sphinx/environment/collectors/asset.py:88 +#: sphinx/environment/collectors/asset.py:89 #, python-format msgid "image file not readable: %s" msgstr "影像檔案無法讀取: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:108 #, python-format msgid "image file %s not readable: %s" msgstr "影像檔案 %s 無法讀取: %s" -#: sphinx/environment/collectors/asset.py:133 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "下載檔案無法讀取: %s" -#: sphinx/environment/collectors/toctree.py:224 +#: sphinx/environment/collectors/toctree.py:225 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s 已經被指定段落編號(巢狀編號的 toctree?)" @@ -2424,7 +2478,7 @@ msgstr "%s 已經被指定段落編號(巢狀編號的 toctree?)" msgid "Would create file %s." msgstr "將會建立檔案 %s 。" -#: sphinx/ext/apidoc.py:320 +#: sphinx/ext/apidoc.py:318 msgid "" "\n" "Look recursively in for Python modules and packages and create\n" @@ -2436,149 +2490,149 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "\n在 中遞迴查找 Python 模組及套件,並在 中\n為每個套件建立一個帶有 automodule 指令的 reST 檔。\n\n 可以是檔案及/或資料夾型樣,它們將在生成時被\n移除。\n\n備註:在預設情況,此腳本不會重寫已經被建立的檔案。" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:331 msgid "path to module to document" msgstr "要生成文件的模組路徑" -#: sphinx/ext/apidoc.py:335 +#: sphinx/ext/apidoc.py:333 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "fnmatch 風格的檔案及/或資料夾模式,將在生成時移除。" -#: sphinx/ext/apidoc.py:340 +#: sphinx/ext/apidoc.py:338 msgid "directory to place all output" msgstr "要放置所有輸出的資料夾" -#: sphinx/ext/apidoc.py:345 +#: sphinx/ext/apidoc.py:343 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "能顯示 TOC 的子模組最大深度(預設值:4)" -#: sphinx/ext/apidoc.py:348 +#: sphinx/ext/apidoc.py:346 msgid "overwrite existing files" msgstr "重寫已存在的檔案" -#: sphinx/ext/apidoc.py:351 +#: sphinx/ext/apidoc.py:349 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "跟隨符號鏈接。與 collective.recipe.omelette 結合時很有用。" -#: sphinx/ext/apidoc.py:354 +#: sphinx/ext/apidoc.py:352 msgid "run the script without creating files" msgstr "執行腳本而不建立檔案" -#: sphinx/ext/apidoc.py:357 +#: sphinx/ext/apidoc.py:355 msgid "put documentation for each module on its own page" msgstr "為每個模組在它自己的頁面置放說明文件" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:358 msgid "include \"_private\" modules" msgstr "包含 \"_private\" 模組" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:360 msgid "filename of table of contents (default: modules)" msgstr "目錄的檔名(預設值:模組)" -#: sphinx/ext/apidoc.py:364 +#: sphinx/ext/apidoc.py:362 msgid "don't create a table of contents file" msgstr "不要建立目錄檔案" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:365 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "不要為模組/套件建立標頭(例如:當說明字串已經包含它們時)" -#: sphinx/ext/apidoc.py:372 +#: sphinx/ext/apidoc.py:370 msgid "put module documentation before submodule documentation" msgstr "在子模組說明文件之前置放模組說明文件" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:374 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "根據 PEP-0420 隱式命名空間規範來解譯模組路徑" -#: sphinx/ext/apidoc.py:380 +#: sphinx/ext/apidoc.py:378 msgid "file suffix (default: rst)" msgstr "檔案後綴(預設值:rst)" -#: sphinx/ext/apidoc.py:382 +#: sphinx/ext/apidoc.py:380 msgid "generate a full project with sphinx-quickstart" msgstr "以 sphinx-quickstart 生成一個完全的專案" -#: sphinx/ext/apidoc.py:385 +#: sphinx/ext/apidoc.py:383 msgid "append module_path to sys.path, used when --full is given" msgstr "附加 module_path 到 sys.path,在給予 --full 時使用" -#: sphinx/ext/apidoc.py:387 +#: sphinx/ext/apidoc.py:385 msgid "project name (default: root module name)" msgstr "專案名稱(預設值:根模組名稱)" -#: sphinx/ext/apidoc.py:389 +#: sphinx/ext/apidoc.py:387 msgid "project author(s), used when --full is given" msgstr "專案作者(們),在給予 --full 時使用" -#: sphinx/ext/apidoc.py:391 +#: sphinx/ext/apidoc.py:389 msgid "project version, used when --full is given" msgstr "專案版本,在給予 --full 時使用" -#: sphinx/ext/apidoc.py:393 +#: sphinx/ext/apidoc.py:391 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "專案發布,在給予 --full 時使用,預設為 --doc-version" -#: sphinx/ext/apidoc.py:396 +#: sphinx/ext/apidoc.py:394 msgid "extension options" msgstr "擴充套件選項" -#: sphinx/ext/apidoc.py:429 +#: sphinx/ext/apidoc.py:427 #, python-format msgid "%s is not a directory." msgstr "%s 不是資料夾" -#: sphinx/ext/autosectionlabel.py:48 +#: sphinx/ext/autosectionlabel.py:49 #, python-format msgid "section \"%s\" gets labeled as \"%s\"" msgstr "段落 \"%s\" 取得標籤 \"%s\"" -#: sphinx/ext/coverage.py:45 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "無效的 regex %r 在 %s" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:75 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "來源的涵蓋測試已結束,在 %(outdir)spython.txt 中查看結果。" -#: sphinx/ext/coverage.py:87 +#: sphinx/ext/coverage.py:89 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "無效的 regex %r 在 coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:157 #, python-format msgid "undocumented c api: %s [%s] in file %s" msgstr "未文件化的 c api: %s [%s] 在檔案 %s 中" -#: sphinx/ext/coverage.py:187 +#: sphinx/ext/coverage.py:189 #, python-format msgid "module %s could not be imported: %s" msgstr "模組 %s 無法被 import: %s" -#: sphinx/ext/coverage.py:334 +#: sphinx/ext/coverage.py:340 #, python-format msgid "undocumented python function: %s :: %s" msgstr "未文件化的 python 函式: %s :: %s" -#: sphinx/ext/coverage.py:350 +#: sphinx/ext/coverage.py:356 #, python-format msgid "undocumented python class: %s :: %s" msgstr "未文件化的 python class: %s :: %s" -#: sphinx/ext/coverage.py:363 +#: sphinx/ext/coverage.py:369 #, python-format msgid "undocumented python method: %s :: %s :: %s" msgstr "未文件化的 python method: %s :: %s :: %s" @@ -2602,24 +2656,24 @@ msgstr "'%s' 不是有效的 pyversion 選項" msgid "invalid TestCode type" msgstr "無效的 TestCode 型別" -#: sphinx/ext/doctest.py:280 +#: sphinx/ext/doctest.py:281 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "來源的 doctests 測試已結束,在 %(outdir)s/output.txt 中查看結果。" -#: sphinx/ext/doctest.py:431 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "在 %s 區塊中的 %s:%s 沒有程式碼/輸出" -#: sphinx/ext/doctest.py:521 +#: sphinx/ext/doctest.py:526 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "正在忽略無效的 doctest 碼: %r" -#: sphinx/ext/duration.py:76 +#: sphinx/ext/duration.py:77 msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最慢的讀取歷時 =======================" @@ -2630,32 +2684,32 @@ msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "hardcoded link %r 可以被一個 extlink 所取代(試試改用 %r)" -#: sphinx/ext/graphviz.py:133 +#: sphinx/ext/graphviz.py:135 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 指令不能同時有內容及檔名引數" -#: sphinx/ext/graphviz.py:143 +#: sphinx/ext/graphviz.py:145 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部的 Graphviz 檔案 %r 未找到或是讀取失敗" -#: sphinx/ext/graphviz.py:150 +#: sphinx/ext/graphviz.py:152 msgid "Ignoring \"graphviz\" directive without content." msgstr "正在略過沒有內容的 \"graphviz\" 指令" -#: sphinx/ext/graphviz.py:259 +#: sphinx/ext/graphviz.py:268 #, python-format msgid "graphviz_dot executable path must be set! %r" -msgstr "" +msgstr "graphviz_dot 可執行路徑必須設定! %r" -#: sphinx/ext/graphviz.py:294 +#: sphinx/ext/graphviz.py:303 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot 命令 %r 無法被執行(graphviz 輸出所需要),請檢查 graphviz_dot 設定" -#: sphinx/ext/graphviz.py:301 +#: sphinx/ext/graphviz.py:310 #, python-format msgid "" "dot exited with error:\n" @@ -2665,7 +2719,7 @@ msgid "" "%r" msgstr "退出 dot,發生錯誤:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:304 +#: sphinx/ext/graphviz.py:313 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2675,27 +2729,27 @@ msgid "" "%r" msgstr "dot 並未製作一個輸出檔案:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:320 +#: sphinx/ext/graphviz.py:329 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format 必須是 'png' 和 'svg' 之一,但卻是 %r" -#: sphinx/ext/graphviz.py:324 sphinx/ext/graphviz.py:377 -#: sphinx/ext/graphviz.py:414 +#: sphinx/ext/graphviz.py:333 sphinx/ext/graphviz.py:386 +#: sphinx/ext/graphviz.py:423 #, python-format msgid "dot code %r: %s" msgstr "點碼 %r: %s" -#: sphinx/ext/graphviz.py:427 sphinx/ext/graphviz.py:435 +#: sphinx/ext/graphviz.py:436 sphinx/ext/graphviz.py:444 #, python-format msgid "[graph: %s]" msgstr "[圖:%s]" -#: sphinx/ext/graphviz.py:429 sphinx/ext/graphviz.py:437 +#: sphinx/ext/graphviz.py:438 sphinx/ext/graphviz.py:446 msgid "[graph]" msgstr "[圖]" -#: sphinx/ext/imgconverter.py:38 +#: sphinx/ext/imgconverter.py:39 #, python-format msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" @@ -2703,7 +2757,7 @@ msgid "" "Traceback: %s" msgstr "無法執行影像轉換命令 %r。 'sphinx.ext.imgconverter' 預設為需要 ImageMagick。請確認它已被安裝,或是設定 'image_converter' 選項為一個自訂轉換命令。\n\n回溯: %s" -#: sphinx/ext/imgconverter.py:47 sphinx/ext/imgconverter.py:71 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:72 #, python-format msgid "" "convert exited with error:\n" @@ -2713,173 +2767,178 @@ msgid "" "%r" msgstr "退出轉換,發生錯誤:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgconverter.py:66 +#: sphinx/ext/imgconverter.py:67 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" msgstr "轉換命令 %r 無法被執行,請檢查 image_converter 設定" -#: sphinx/ext/imgmath.py:157 +#: sphinx/ext/imgmath.py:158 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX 命令 %r 無法被執行(數學顯示所需要),請檢查 imgmath_latex 設定" -#: sphinx/ext/imgmath.py:172 +#: sphinx/ext/imgmath.py:173 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s 命令 %r 無法被執行(數學顯示所需要),請檢查 imgmath_%s 設定" -#: sphinx/ext/imgmath.py:326 +#: sphinx/ext/imgmath.py:327 #, python-format msgid "display latex %r: %s" msgstr "顯示 latex %r: %s" -#: sphinx/ext/imgmath.py:360 +#: sphinx/ext/imgmath.py:361 #, python-format msgid "inline latex %r: %s" msgstr "行內 latex %r: %s" -#: sphinx/ext/imgmath.py:367 sphinx/ext/mathjax.py:52 +#: sphinx/ext/imgmath.py:368 sphinx/ext/mathjax.py:53 msgid "Link to this equation" -msgstr "" +msgstr "連結到這個方程式" -#: sphinx/ext/intersphinx.py:194 +#: sphinx/ext/intersphinx.py:195 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "intersphinx 庫存已移動: %s -> %s" -#: sphinx/ext/intersphinx.py:229 +#: sphinx/ext/intersphinx.py:230 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "正在從 %s 載入 intersphinx 庫存... " -#: sphinx/ext/intersphinx.py:243 +#: sphinx/ext/intersphinx.py:244 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "從一些庫存中遇到一些問題,但他們已在進行替代方案:" -#: sphinx/ext/intersphinx.py:249 +#: sphinx/ext/intersphinx.py:250 msgid "failed to reach any of the inventories with the following issues:" msgstr "無法到達任何的庫存,遇到以下問題:" -#: sphinx/ext/intersphinx.py:302 +#: sphinx/ext/intersphinx.py:303 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:304 +#: sphinx/ext/intersphinx.py:305 #, python-format msgid "(in %s)" msgstr "(於 %s)" -#: sphinx/ext/intersphinx.py:536 +#: sphinx/ext/intersphinx.py:538 #, python-format -msgid "inventory for external cross-reference not found: %s" -msgstr "未找到外部交叉參照的清單: %s" +msgid "inventory for external cross-reference not found: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:542 +#: sphinx/ext/intersphinx.py:546 #, python-format -msgid "role for external cross-reference not found: %s" -msgstr "未找到外部交叉參照的角色: %s" +msgid "invalid external cross-reference suffix: %r" +msgstr "" -#: sphinx/ext/intersphinx.py:633 +#: sphinx/ext/intersphinx.py:557 +#, python-format +msgid "domain for external cross-reference not found: %r" +msgstr "" + +#: sphinx/ext/intersphinx.py:750 #, python-format msgid "external %s:%s reference target not found: %s" msgstr "未找到外部的 %s:%s 參照目標: %s" -#: sphinx/ext/intersphinx.py:658 +#: sphinx/ext/intersphinx.py:775 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx identifier %r 不是字串。已略過" -#: sphinx/ext/intersphinx.py:680 +#: sphinx/ext/intersphinx.py:797 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "無法讀取 intersphinx_mapping[%s], 已略過: %r" -#: sphinx/ext/linkcode.py:68 sphinx/ext/viewcode.py:198 +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:199 msgid "[source]" msgstr "[原始碼]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:69 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:100 +#: sphinx/ext/todo.py:102 #, python-format msgid "TODO entry found: %s" msgstr "找到 TODO 項目: %s" -#: sphinx/ext/todo.py:158 +#: sphinx/ext/todo.py:161 msgid "<>" msgstr "<>" -#: sphinx/ext/todo.py:160 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> 見 %s ,第 %d 行)" -#: sphinx/ext/todo.py:170 +#: sphinx/ext/todo.py:173 msgid "original entry" msgstr "原始記錄" -#: sphinx/ext/viewcode.py:255 +#: sphinx/ext/viewcode.py:256 msgid "highlighting module code... " msgstr "正在 highlight 模組程式碼..." -#: sphinx/ext/viewcode.py:283 +#: sphinx/ext/viewcode.py:284 msgid "[docs]" msgstr "[文件]" -#: sphinx/ext/viewcode.py:303 +#: sphinx/ext/viewcode.py:304 msgid "Module code" msgstr "模組原始碼" -#: sphinx/ext/viewcode.py:309 +#: sphinx/ext/viewcode.py:310 #, python-format msgid "

Source code for %s

" msgstr "

%s 的原始碼

" -#: sphinx/ext/viewcode.py:335 +#: sphinx/ext/viewcode.py:336 msgid "Overview: module code" msgstr "概要:模組原始碼" -#: sphinx/ext/viewcode.py:336 +#: sphinx/ext/viewcode.py:337 msgid "

All modules for which code is available

" msgstr "

所有可得程式碼的模組

" -#: sphinx/ext/autodoc/__init__.py:127 +#: sphinx/ext/autodoc/__init__.py:135 #, python-format msgid "invalid value for member-order option: %s" msgstr "對於 member-order 選項無效的值: %s" -#: sphinx/ext/autodoc/__init__.py:135 +#: sphinx/ext/autodoc/__init__.py:143 #, python-format msgid "invalid value for class-doc-from option: %s" msgstr "對於 class-doc-from 選項無效的值: %s" -#: sphinx/ext/autodoc/__init__.py:391 +#: sphinx/ext/autodoc/__init__.py:399 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "無效的簽章給 auto%s (%r)" -#: sphinx/ext/autodoc/__init__.py:508 +#: sphinx/ext/autodoc/__init__.py:515 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "在為 %s 格式化引數時有錯誤: %s" -#: sphinx/ext/autodoc/__init__.py:777 +#: sphinx/ext/autodoc/__init__.py:798 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "autodoc: 決定 %s.%s (%r) 被文件化失敗,引發以下的例外:\n%s" -#: sphinx/ext/autodoc/__init__.py:872 +#: sphinx/ext/autodoc/__init__.py:893 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2887,112 +2946,112 @@ msgid "" "explicit module name)" msgstr "不清楚要 import 哪個模組來 autodocument %r (試試看在文件中加入 \"module\" 或 \"currentmodule\" 指令,或是給予一個明確的模組名稱)" -#: sphinx/ext/autodoc/__init__.py:916 +#: sphinx/ext/autodoc/__init__.py:937 #, python-format msgid "A mocked object is detected: %r" msgstr "一個 mocked 物件被偵測到: %r" -#: sphinx/ext/autodoc/__init__.py:935 +#: sphinx/ext/autodoc/__init__.py:956 #, python-format msgid "error while formatting signature for %s: %s" msgstr "正在為 %s 格式化簽名時發生錯誤: %s" -#: sphinx/ext/autodoc/__init__.py:996 +#: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" 在 automodule 的名稱中並不合理" -#: sphinx/ext/autodoc/__init__.py:1003 +#: sphinx/ext/autodoc/__init__.py:1026 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "簽名引數或回傳註釋給予 automodule %s" -#: sphinx/ext/autodoc/__init__.py:1016 +#: sphinx/ext/autodoc/__init__.py:1039 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ 應該是一個字串的列表,不是 %r (在 %s 模組中)-- 正在忽略 __all__" -#: sphinx/ext/autodoc/__init__.py:1082 +#: sphinx/ext/autodoc/__init__.py:1105 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "缺少 :members: 選項中所述的屬性:模組 %s ,屬性 %s" -#: sphinx/ext/autodoc/__init__.py:1298 sphinx/ext/autodoc/__init__.py:1375 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1327 sphinx/ext/autodoc/__init__.py:1404 +#: sphinx/ext/autodoc/__init__.py:2824 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "無法取得一個函式簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1586 +#: sphinx/ext/autodoc/__init__.py:1618 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "無法取得一個 constructor 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1713 +#: sphinx/ext/autodoc/__init__.py:1745 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1727 +#: sphinx/ext/autodoc/__init__.py:1759 #, python-format msgid "missing attribute %s in object %s" msgstr "遺漏屬性 %s 在物件 %s" -#: sphinx/ext/autodoc/__init__.py:1826 sphinx/ext/autodoc/__init__.py:1863 -#: sphinx/ext/autodoc/__init__.py:1946 +#: sphinx/ext/autodoc/__init__.py:1858 sphinx/ext/autodoc/__init__.py:1895 +#: sphinx/ext/autodoc/__init__.py:1990 #, python-format msgid "alias of %s" msgstr "%s 的別名" -#: sphinx/ext/autodoc/__init__.py:1846 +#: sphinx/ext/autodoc/__init__.py:1878 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s) 的別名" -#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 +#: sphinx/ext/autodoc/__init__.py:2216 sphinx/ext/autodoc/__init__.py:2316 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "無法取得一個 method 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:2395 +#: sphinx/ext/autodoc/__init__.py:2447 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/preserve_defaults.py:183 +#: sphinx/ext/autodoc/preserve_defaults.py:190 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "無法為 %r 剖析一個預設引數: %s" -#: sphinx/ext/autodoc/type_comment.py:131 +#: sphinx/ext/autodoc/type_comment.py:132 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" msgstr "無法為 %r 更新簽名:未找到參數: %s" -#: sphinx/ext/autodoc/type_comment.py:134 +#: sphinx/ext/autodoc/type_comment.py:135 #, python-format msgid "Failed to parse type_comment for %r: %s" msgstr "無法為 %r 剖析 type_comment: %s" -#: sphinx/ext/autosummary/__init__.py:249 +#: sphinx/ext/autosummary/__init__.py:251 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary 參照已排除文件 %r 。已略過。" -#: sphinx/ext/autosummary/__init__.py:251 +#: sphinx/ext/autosummary/__init__.py:253 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 未找到 stub 檔 %r 。請檢查您的 autosummary_generate 設定。" -#: sphinx/ext/autosummary/__init__.py:270 +#: sphinx/ext/autosummary/__init__.py:272 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "一個有標題的 autosummary 需要 :toctree: 選項。已略過。 " -#: sphinx/ext/autosummary/__init__.py:323 +#: sphinx/ext/autosummary/__init__.py:325 #, python-format msgid "" "autosummary: failed to import %s.\n" @@ -3000,26 +3059,26 @@ msgid "" "%s" msgstr "autosummary: import %s 失敗。\n可能的提示:\n%s" -#: sphinx/ext/autosummary/__init__.py:337 +#: sphinx/ext/autosummary/__init__.py:339 #, python-format msgid "failed to parse name %s" msgstr "剖析名稱 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:342 +#: sphinx/ext/autosummary/__init__.py:344 #, python-format msgid "failed to import object %s" msgstr "import 物件 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:798 +#: sphinx/ext/autosummary/__init__.py:802 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 檔案未找到: %s" -#: sphinx/ext/autosummary/__init__.py:806 +#: sphinx/ext/autosummary/__init__.py:810 msgid "" -"autosummary generats .rst files internally. But your source_suffix does not " -"contain .rst. Skipped." -msgstr "autosummary 會在內部產生 .rst 檔案。但是您的 source_suffix 並未包含 .rst。已省略。" +"autosummary generates .rst files internally. But your source_suffix does not" +" contain .rst. Skipped." +msgstr "" #: sphinx/ext/autosummary/generate.py:200 #: sphinx/ext/autosummary/generate.py:358 @@ -3092,99 +3151,99 @@ msgid "" "%(default)s)" msgstr "文件確實是在模組 __all__ 屬性中的成員。(預設值: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:336 sphinx/ext/napoleon/docstring.py:726 +#: sphinx/ext/napoleon/__init__.py:341 sphinx/ext/napoleon/docstring.py:728 msgid "Keyword Arguments" msgstr "關鍵字引數" -#: sphinx/ext/napoleon/docstring.py:680 +#: sphinx/ext/napoleon/docstring.py:682 msgid "Example" msgstr "範例" -#: sphinx/ext/napoleon/docstring.py:681 +#: sphinx/ext/napoleon/docstring.py:683 msgid "Examples" msgstr "範例" -#: sphinx/ext/napoleon/docstring.py:742 +#: sphinx/ext/napoleon/docstring.py:744 msgid "Notes" msgstr "備註" -#: sphinx/ext/napoleon/docstring.py:751 +#: sphinx/ext/napoleon/docstring.py:753 msgid "Other Parameters" msgstr "其他參數" -#: sphinx/ext/napoleon/docstring.py:787 +#: sphinx/ext/napoleon/docstring.py:789 msgid "Receives" msgstr "接收" -#: sphinx/ext/napoleon/docstring.py:791 +#: sphinx/ext/napoleon/docstring.py:793 msgid "References" msgstr "參照" -#: sphinx/ext/napoleon/docstring.py:823 +#: sphinx/ext/napoleon/docstring.py:825 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:827 +#: sphinx/ext/napoleon/docstring.py:829 msgid "Yields" msgstr "產出" -#: sphinx/ext/napoleon/docstring.py:985 +#: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "無效的值集合(缺少右括號): %s" -#: sphinx/ext/napoleon/docstring.py:992 +#: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "無效的值集合(缺少左括號): %s" -#: sphinx/ext/napoleon/docstring.py:999 +#: sphinx/ext/napoleon/docstring.py:1001 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "異常的字串文本(缺少右括號): %s" -#: sphinx/ext/napoleon/docstring.py:1006 +#: sphinx/ext/napoleon/docstring.py:1008 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "異常的字串文本(缺少左括號): %s" -#: sphinx/locale/__init__.py:221 +#: sphinx/locale/__init__.py:228 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:222 +#: sphinx/locale/__init__.py:229 msgid "Caution" msgstr "警示" -#: sphinx/locale/__init__.py:223 +#: sphinx/locale/__init__.py:230 msgid "Danger" msgstr "危險" -#: sphinx/locale/__init__.py:224 +#: sphinx/locale/__init__.py:231 msgid "Error" msgstr "錯誤" -#: sphinx/locale/__init__.py:225 +#: sphinx/locale/__init__.py:232 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:226 +#: sphinx/locale/__init__.py:233 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:227 +#: sphinx/locale/__init__.py:234 msgid "Note" msgstr "備註" -#: sphinx/locale/__init__.py:228 +#: sphinx/locale/__init__.py:235 msgid "See also" msgstr "也參考" -#: sphinx/locale/__init__.py:229 +#: sphinx/locale/__init__.py:236 msgid "Tip" msgstr "小訣竅" -#: sphinx/locale/__init__.py:230 +#: sphinx/locale/__init__.py:237 msgid "Warning" msgstr "警告" @@ -3216,7 +3275,7 @@ msgid "Table of Contents" msgstr "目錄" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:141 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 msgid "Search" msgstr "搜尋" @@ -3314,7 +3373,7 @@ msgstr "版權所有" #: sphinx/themes/basic/layout.html:194 sphinx/themes/basic/layout.html:200 #, python-format msgid "© %(copyright_prefix)s %(copyright)s." -msgstr "" +msgstr "© %(copyright_prefix)s %(copyright)s." #: sphinx/themes/basic/layout.html:212 #, python-format @@ -3349,34 +3408,22 @@ msgstr "下個主題" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:27 +#: sphinx/themes/basic/search.html:28 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "請啟用 Javascript 以開啟搜尋功能。" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:36 msgid "" "Searching for multiple words only shows matches that contain\n" " all words." msgstr "搜尋多個關鍵字時,只會顯示包含所有關鍵字的結果。" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:43 msgid "search" msgstr "搜尋" -#: sphinx/themes/basic/search.html:48 -#: sphinx/themes/basic/static/searchtools.js:112 -msgid "Search Results" -msgstr "搜尋結果" - -#: sphinx/themes/basic/search.html:50 -#: sphinx/themes/basic/static/searchtools.js:114 -msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "您的搜尋找不到任何滿足條件的文件。請確定是否所有的搜尋詞都正確地拼寫且您已選擇足夠的分類。" - #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" msgstr "快速搜尋" @@ -3413,20 +3460,30 @@ msgstr "C API 的變更" msgid "Other changes" msgstr "其他變更" +#: sphinx/themes/basic/static/searchtools.js:112 +msgid "Search Results" +msgstr "搜尋結果" + +#: sphinx/themes/basic/static/searchtools.js:114 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "您的搜尋找不到任何滿足條件的文件。請確定是否所有的搜尋詞都正確地拼寫且您已選擇足夠的分類。" + #: sphinx/themes/basic/static/searchtools.js:118 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." msgstr "搜尋結束,共找到 ${resultCount} 個頁面符合搜尋條件。" -#: sphinx/themes/basic/static/searchtools.js:217 +#: sphinx/themes/basic/static/searchtools.js:246 msgid "Searching" msgstr "搜尋中" -#: sphinx/themes/basic/static/searchtools.js:233 +#: sphinx/themes/basic/static/searchtools.js:262 msgid "Preparing search..." msgstr "準備搜尋中…" -#: sphinx/themes/basic/static/searchtools.js:421 +#: sphinx/themes/basic/static/searchtools.js:463 msgid ", in " msgstr ",於 " @@ -3447,30 +3504,30 @@ msgstr "展開側邊欄" msgid "Contents" msgstr "內容" -#: sphinx/transforms/__init__.py:126 +#: sphinx/transforms/__init__.py:128 msgid "could not calculate translation progress!" -msgstr "" +msgstr "無法計算翻譯進度!" -#: sphinx/transforms/__init__.py:131 +#: sphinx/transforms/__init__.py:133 msgid "no translated elements!" -msgstr "" +msgstr "沒有已翻譯的元素!" -#: sphinx/transforms/__init__.py:238 +#: sphinx/transforms/__init__.py:250 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "找到基於 4 欄位的索引。它可能是您使用的擴充套件的一個錯誤: %r" -#: sphinx/transforms/__init__.py:277 +#: sphinx/transforms/__init__.py:291 #, python-format msgid "Footnote [%s] is not referenced." msgstr "註腳 [%s] 未被參照。" -#: sphinx/transforms/__init__.py:283 +#: sphinx/transforms/__init__.py:297 msgid "Footnote [#] is not referenced." msgstr "註腳 [#] 未被參照。" -#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:272 +#: sphinx/transforms/i18n.py:205 sphinx/transforms/i18n.py:270 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" @@ -3482,13 +3539,13 @@ msgid "" "{1}" msgstr "被翻譯訊息中有不一致的參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:287 +#: sphinx/transforms/i18n.py:285 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的引用。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:304 +#: sphinx/transforms/i18n.py:302 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3515,97 +3572,97 @@ msgstr "%s:%s 參照目標未找到: %s" msgid "%r reference target not found: %s" msgstr "%r 參照目標未找到: %s" -#: sphinx/transforms/post_transforms/images.py:80 +#: sphinx/transforms/post_transforms/images.py:89 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "無法提取遠端圖片: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:108 +#: sphinx/transforms/post_transforms/images.py:117 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "無法提取遠端圖片: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:126 +#: sphinx/transforms/post_transforms/images.py:135 #, python-format msgid "Unknown image format: %s..." msgstr "未知的圖片格式: %s..." -#: sphinx/util/__init__.py:167 +#: sphinx/util/__init__.py:168 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "無法解碼的原始字元,以 \"?\" 取代: %r" -#: sphinx/util/display.py:77 +#: sphinx/util/display.py:78 msgid "skipped" msgstr "已省略" -#: sphinx/util/display.py:82 +#: sphinx/util/display.py:83 msgid "failed" msgstr "失敗" -#: sphinx/util/docfields.py:88 +#: sphinx/util/docfields.py:87 #, python-format msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." msgstr "在 %s domain 中的問題:欄位應該要用角色 '%s' ,但是那個角色並不在該 domain。" -#: sphinx/util/docutils.py:311 +#: sphinx/util/docutils.py:295 #, python-format msgid "unknown directive or role name: %s:%s" msgstr "未知的指令或角色名稱: %s:%s" -#: sphinx/util/docutils.py:605 +#: sphinx/util/docutils.py:591 #, python-format msgid "unknown node type: %r" msgstr "未知的節點型別: %r" -#: sphinx/util/i18n.py:63 +#: sphinx/util/i18n.py:94 #, python-format msgid "reading error: %s, %s" msgstr "讀取錯誤: %s, %s" -#: sphinx/util/i18n.py:70 +#: sphinx/util/i18n.py:101 #, python-format msgid "writing error: %s, %s" msgstr "寫入錯誤: %s, %s" -#: sphinx/util/i18n.py:94 +#: sphinx/util/i18n.py:125 #, python-format msgid "locale_dir %s does not exist" -msgstr "" +msgstr "locale_dir %s 不存在" -#: sphinx/util/i18n.py:185 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" msgstr "無效的日期格式。如果您要直接將它輸出,則以單引號引用該字串: %s" -#: sphinx/util/nodes.py:378 +#: sphinx/util/nodes.py:386 #, python-format msgid "" "%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead." -msgstr "" +msgstr "%r 已棄用於索引項目(從項目 %r)。請改用 'pair: %s'。" -#: sphinx/util/nodes.py:426 +#: sphinx/util/nodes.py:439 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree 包含了不存在的檔案 %r 的參照 " -#: sphinx/util/nodes.py:627 +#: sphinx/util/nodes.py:637 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "在評估只有指令的運算式時發生例外: %s" -#: sphinx/util/rst.py:70 +#: sphinx/util/rst.py:71 #, python-format msgid "default role %s not found" msgstr "預設角色 %s 未找到" #: sphinx/writers/html5.py:100 sphinx/writers/html5.py:109 msgid "Link to this definition" -msgstr "" +msgstr "連結到這個定義" #: sphinx/writers/html5.py:397 #, python-format @@ -3619,29 +3676,29 @@ msgstr "任一個 ID 未被指定給 %s 節點" #: sphinx/writers/html5.py:462 msgid "Link to this term" -msgstr "" +msgstr "連結到這個項目" -#: sphinx/writers/html5.py:485 sphinx/writers/html5.py:490 +#: sphinx/writers/html5.py:496 sphinx/writers/html5.py:501 msgid "Link to this heading" -msgstr "" +msgstr "連結到這個標頭" -#: sphinx/writers/html5.py:494 +#: sphinx/writers/html5.py:505 msgid "Link to this table" -msgstr "" +msgstr "連結到這個表格" -#: sphinx/writers/html5.py:537 +#: sphinx/writers/html5.py:548 msgid "Link to this code" -msgstr "" +msgstr "連結到這個程式碼" -#: sphinx/writers/html5.py:539 +#: sphinx/writers/html5.py:550 msgid "Link to this image" -msgstr "" +msgstr "連結到這個圖片" -#: sphinx/writers/html5.py:541 +#: sphinx/writers/html5.py:552 msgid "Link to this toctree" -msgstr "" +msgstr "連結到這個 toctree" -#: sphinx/writers/html5.py:679 +#: sphinx/writers/html5.py:688 msgid "Could not obtain image size. :scale: option is ignored." msgstr "無法取得圖片大小。 :scale: 選項已略過。" @@ -3658,13 +3715,13 @@ msgstr ":maxdepth: 太大,已略過。" msgid "document title is not a single Text node" msgstr "文件標題不是單一的 Text 節點" -#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:656 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "遇到的標題節點不是在段落、主題、表格、警告或側邊欄" -#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:258 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:959 sphinx/writers/manpage.py:259 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "註腳" @@ -3683,20 +3740,20 @@ msgstr "維度單位 %s 是無效的。已略過。" msgid "unknown index entry type %s found" msgstr "找到了未知的索引條目型別 %s" -#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:917 +#: sphinx/writers/manpage.py:305 sphinx/writers/text.py:907 #, python-format msgid "[image: %s]" msgstr "[圖片:%s]" -#: sphinx/writers/manpage.py:307 sphinx/writers/text.py:918 +#: sphinx/writers/manpage.py:306 sphinx/writers/text.py:908 msgid "[image]" msgstr "[圖片]" -#: sphinx/writers/texinfo.py:1193 +#: sphinx/writers/texinfo.py:1197 msgid "caption not inside a figure." msgstr "標題不在圖之內。" -#: sphinx/writers/texinfo.py:1280 +#: sphinx/writers/texinfo.py:1284 #, python-format msgid "unimplemented node type: %r" msgstr "未實作的節點型別: %r" From 4f4d979b41fc57c6be5dc3c286bdb1b749e0b4c2 Mon Sep 17 00:00:00 2001 From: James Addison <55152140+jayaddison@users.noreply.github.com> Date: Tue, 16 Apr 2024 23:52:06 +0100 Subject: [PATCH 03/36] Use hash-based directory names in the remote image download cache (#12274) Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> --- sphinx/transforms/post_transforms/images.py | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/sphinx/transforms/post_transforms/images.py b/sphinx/transforms/post_transforms/images.py index 2c25bc63d67..18ad51ded4f 100644 --- a/sphinx/transforms/post_transforms/images.py +++ b/sphinx/transforms/post_transforms/images.py @@ -25,10 +25,6 @@ MAX_FILENAME_LEN = 32 CRITICAL_PATH_CHAR_RE = re.compile('[:;<>|*" ]') -# Replace reserved Windows or Unix path characters with '/'. -_URI_TO_PATH = { - ord(k): '/' for k in ('"', '&', '*', '/', ':', '<', '>', '?', '\\', '|') -} class BaseImageConverter(SphinxTransform): @@ -68,11 +64,9 @@ def handle(self, node: nodes.image) -> None: basename = sha1(filename.encode(), usedforsecurity=False).hexdigest() + ext basename = CRITICAL_PATH_CHAR_RE.sub("_", basename) - dirname = node['uri'].replace('://', '/').translate(_URI_TO_PATH) - if len(dirname) > MAX_FILENAME_LEN: - dirname = sha1(dirname.encode(), usedforsecurity=False).hexdigest() - ensuredir(os.path.join(self.imagedir, dirname)) - path = os.path.join(self.imagedir, dirname, basename) + uri_hash = sha1(node['uri'].encode(), usedforsecurity=False).hexdigest() + ensuredir(os.path.join(self.imagedir, uri_hash)) + path = os.path.join(self.imagedir, uri_hash, basename) headers = {} if os.path.exists(path): @@ -104,7 +98,7 @@ def handle(self, node: nodes.image) -> None: if mimetype != '*' and os.path.splitext(basename)[1] == '': # append a suffix if URI does not contain suffix ext = get_image_extension(mimetype) - newpath = os.path.join(self.imagedir, dirname, basename + ext) + newpath = os.path.join(self.imagedir, uri_hash, basename + ext) os.replace(path, newpath) self.app.env.original_image_uri.pop(path) self.app.env.original_image_uri[newpath] = node['uri'] From 2b60e32be2eb35a62e1e7d7c5cc46a1be8efd322 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 16 Apr 2024 23:58:02 +0100 Subject: [PATCH 04/36] Update CHANGES.rst --- CHANGES.rst | 59 +++++++++++++++++++++++------------------------------ 1 file changed, 26 insertions(+), 33 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 14ab7dc5b7d..d3edf4e8dd5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,7 @@ Dependencies * #11411: Support `Docutils 0.21`_. Patch by Adam Turner. .. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09 +* #12012: Use ``types-docutils`` instead of ``docutils-stubs``. Incompatible changes -------------------- @@ -22,59 +23,45 @@ Deprecated the public properties :attr:`!sphinx.testing.util.SphinxTestApp.status` and :attr:`!sphinx.testing.util.SphinxTestApp.warning` instead. Patch by Bénédikt Tran. -* tests: :func:`!sphinx.testing.util.strip_escseq` is deprecated in favor of +* tests: :func:`!sphinx.testing.util.strip_escseq` is deprecated in favour of :func:`!sphinx.util.console.strip_colors`. Patch by Bénédikt Tran. Features added -------------- -* Add public type alias :class:`sphinx.util.typing.ExtensionMetadata`. - This can be used by extension developers - to annotate the return type of their ``setup`` function. - Patch by Chris Sewell. - -* #12193: Improve ``external`` warnings for unknown roles. - In particular, suggest related role names if an object type is mistakenly used. - Patch by Chris Sewell. - -* #12131: Added :confval:`show_warning_types` configuration option. - Patch by Chris Sewell. - +* #12265: Support theme configuration via ``theme.toml``. * #11701: HTML Search: Adopt the new `\`_ element. Patch by Bénédikt Tran. .. _`\`: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search - * #11803: autodoc: Use an overriden ``__repr__()`` function in an enum, if defined. Patch by Shengyu Zhang. - -* #11892: Improved performance when resolving cross references in cpp domain. +* #11892: Improved performance when resolving cross references in the C++ domain. Patch by Rouslan Korneychuk. - * #11981: Improve rendering of signatures using ``slice`` syntax, e.g., ``def foo(arg: np.float64[:,:]) -> None: ...``. - * The manpage builder now adds `OSC 8`_ anchors to hyperlinks, using the `groff`_ device control command. .. _OSC 8: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda .. _groff: https://lists.gnu.org/archive/html/groff/2021-10/msg00000.html - -* #11015: :rst:dir:`versionadded` wording changes from ``New in [...]`` - to ``Added in [...]``. +* #11015: Change the text of the :rst:dir:`versionadded` directive from + ``New in [...]`` to ``Added in [...]``. Patch by Bénédikt Tran. - +* #12131: Added :confval:`show_warning_types` configuration option. + Patch by Chris Sewell. +* #12193: Improve ``external`` warnings for unknown roles. + In particular, suggest related role names if an object type is mistakenly used. + Patch by Chris Sewell. +* Add public type alias :class:`sphinx.util.typing.ExtensionMetadata`. + This can be used by extension developers + to annotate the return type of their ``setup`` function. + Patch by Chris Sewell. Bugs fixed ---------- -* #11959: Fix multiple term matching when word appears in both title and document. - Patch by Will Lachance. -* #11958: HTML Search: Fix partial matches overwriting full matches. - Patch by William Lachance. -* #11944: Use anchor in search preview. - Patch by Will Lachance. * #11668: Raise a useful error when ``theme.conf`` is missing. Patch by Vinay Sajip. * #11622: Ensure that the order of keys in ``searchindex.js`` is deterministic. @@ -130,6 +117,12 @@ Bugs fixed Patch by Bénédikt Tran. * #12008: Fix case-sensitive lookup of ``std:label`` names in intersphinx inventory. Patch by Michael Goerz. +* #11959: Fix multiple term matching when word appears in both title and document. + Patch by Will Lachance. +* #11958: HTML Search: Fix partial matches overwriting full matches. + Patch by William Lachance. +* #11944: Use anchor in search preview. + Patch by Will Lachance. * #11474: Fix doctrees caching causing files not be rebuilt in some cases, e.g., when :confval:`numfig` is ``True``. Patch by Bénédikt Tran. @@ -163,6 +156,7 @@ Bugs fixed Testing ------- + * #11285: :func:`!pytest.mark.sphinx` and :class:`!sphinx.testing.util.SphinxTestApp` accept *warningiserror*, *keep_going* and *verbosity* as keyword arguments. Patch by Bénédikt Tran. @@ -170,11 +164,10 @@ Testing arguments are checked to be :class:`io.StringIO` objects (the public API incorrectly assumed this without checking it). Patch by Bénédikt Tran. - -* pytest: report the result of ``test_run_epubcheck`` as ``skipped`` instead of - ``success`` when Java and/or the ``epubcheck.jar`` code are not available. -* utils: use dynamic allocation of unused port numbers for the test HTTP(S) - servers. As a side-effect, this removes the need for test server lockfiles, +* Report the result of ``test_run_epubcheck`` as ``skipped`` instead of + ``success`` when either Java or ``epubcheck`` are not available. +* Use dynamic allocation of unused port numbers for the test HTTP(S) servers. + As a side-effect, this removes the need for test server lockfiles, meaning that any remaining ``tests/test-server.lock`` files can safely be deleted. From 092bac7f9ca21afd3373a64544da40bab2cab4e0 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Tue, 16 Apr 2024 23:58:37 +0100 Subject: [PATCH 05/36] Bump to 7.3.0 final --- CHANGES.rst | 7 ++----- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d3edf4e8dd5..a641a1acb7d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,5 @@ -Release 7.3.0 (in development) -============================== +Release 7.3.0 (released Apr 16, 2024) +===================================== Dependencies ------------ @@ -9,9 +9,6 @@ Dependencies .. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09 * #12012: Use ``types-docutils`` instead of ``docutils-stubs``. -Incompatible changes --------------------- - Deprecated ---------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 9714e7f5f89..67c39c1382b 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -28,11 +28,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (7, 3, 0, 'beta', 0) +version_info = (7, 3, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) -_in_development = True +_in_development = False if _in_development: # Only import subprocess if needed import subprocess From 138184d834cf7ddc6221432f3a9d1bba7acf1bd0 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Wed, 17 Apr 2024 00:53:58 +0100 Subject: [PATCH 06/36] Add various missing items to CHANGES.rst for 7.3.0 --- CHANGES.rst | 47 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a641a1acb7d..07fc3591273 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,9 +4,11 @@ Release 7.3.0 (released Apr 16, 2024) Dependencies ------------ +* #11858: Increase the minimum supported version of Alabaster to 0.7.14. + Patch by Adam Turner. * #11411: Support `Docutils 0.21`_. Patch by Adam Turner. -.. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09 + .. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09 * #12012: Use ``types-docutils`` instead of ``docutils-stubs``. Deprecated @@ -32,10 +34,22 @@ Features added Patch by Bénédikt Tran. .. _`\`: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search +* #11776: Add long option names to ``sphinx-build``. + Patch by Hugo van Kemenade, Adam Turner, Bénédikt Tran, and Ezio Melotti. +* Organise the ``sphinx-build`` options into groups. + Patch by Adam Turner. +* #11855: Defer computation of configuration values. + Patch by Adam Turner. +* Add ``:no-search:`` as an alias of the ``:nosearch:`` metadata field. + Patch by Adam Turner. * #11803: autodoc: Use an overriden ``__repr__()`` function in an enum, if defined. Patch by Shengyu Zhang. +* #11825: Allow custom targets in the manpage role. + Patch by Nicolas Peugnet. * #11892: Improved performance when resolving cross references in the C++ domain. Patch by Rouslan Korneychuk. +* #11905: Add a :rst:dir:`versionremoved` directive. + Patch by Hugo van Kemenade, Adam Turner, and C.A.M. Gerlach. * #11981: Improve rendering of signatures using ``slice`` syntax, e.g., ``def foo(arg: np.float64[:,:]) -> None: ...``. * The manpage builder now adds `OSC 8`_ anchors to hyperlinks, using @@ -84,9 +98,13 @@ Bugs fixed * #11675: Fix rendering of progression bars in environments that do not support ANSI control sequences. Patch by Bénédikt Tran. +* #11861: Whitelist more types with an incorrect ``__module__`` attribute. + Patch by Adam Turner. * #11715: Apply ``tls_verify`` and ``tls_cacerts`` config to ``ImageDownloader``. Patch by Nick Touran. +* Allow hyphens in group names for :rst:dir:`productionlist` cross-references. + Patch by Adam Turner. * #11433: Added the :confval:`linkcheck_allow_unauthorized` configuration option. Set this option to ``False`` to report HTTP 401 (unauthorized) server responses as broken. @@ -103,22 +121,28 @@ Bugs fixed Patch by Colin Marquardt. * #11598: Do not use query components in URLs for assets in EPUB rendering. Patch by David Runge. -* #11917: Fix rendering of annotated inherited members for Python 3.9. - Patch by Janet Carson. +* #11904: Support unary subtraction when parsing annotations. + Patch by James Addison. * #11925: Blacklist the ``sphinxprettysearchresults`` extension; the functionality it provides was merged into Sphinx v2.0.0. Patch by James Addison. +* #11917: Fix rendering of annotated inherited members for Python 3.9. + Patch by Janet Carson. +* #11935: C Domain: Fix namespace-pop context. + Patch by Frank Dana. +* #11923: Avoid zombie processes when parallel builds fail. + Patch by Felix von Drigalski. * #11353: Support enumeration classes inheriting from mixin or data types. Patch by Bénédikt Tran. * #11962: Fix target resolution when using ``:paramtype:`` fields. Patch by Bénédikt Tran. +* #11944: Use anchor in search preview. + Patch by Will Lachance. * #12008: Fix case-sensitive lookup of ``std:label`` names in intersphinx inventory. Patch by Michael Goerz. -* #11959: Fix multiple term matching when word appears in both title and document. - Patch by Will Lachance. * #11958: HTML Search: Fix partial matches overwriting full matches. Patch by William Lachance. -* #11944: Use anchor in search preview. +* #11959: Fix multiple term matching when word appears in both title and document. Patch by Will Lachance. * #11474: Fix doctrees caching causing files not be rebuilt in some cases, e.g., when :confval:`numfig` is ``True``. @@ -127,7 +151,7 @@ Bugs fixed combined with :func:`@classmethod `. Patch by Bénédikt Tran. * #11894: Do not add checksums to css files if building using the htmlhelp builder. - Patch by mkay. + Patch by reduerK akiM. * #12052: Remove ``